[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/11: gnu: gtkwave: Update to 3.3.113.
From: |
guix-commits |
Subject: |
07/11: gnu: gtkwave: Update to 3.3.113. |
Date: |
Tue, 11 Oct 2022 10:16:01 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit f8529b9eec054cb015ff67e3068b06d5fa53fea1
Author: jgart <jgart@dismail.de>
AuthorDate: Wed Oct 5 14:11:05 2022 -0500
gnu: gtkwave: Update to 3.3.113.
* gnu/packages/fpga.scm (gtkwave): Update to 3.3.113.
[inputs]: Use new style.
[arguments]: Use gexp.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/fpga.scm | 25 ++++++++++++-------------
1 file changed, 12 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm
index 11c56477a8..082b0c08ed 100644
--- a/gnu/packages/fpga.scm
+++ b/gnu/packages/fpga.scm
@@ -6,6 +6,7 @@
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2021 Andrew Miloradovsky <andrew@interpretmath.pw>
;;; Copyright © 2022 Christian Gelinek <cgelinek@radlogic.com.au>
+;;; Copyright © 2022 jgart <jgart@dismail.de>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -24,6 +25,7 @@
(define-module (gnu packages fpga)
#:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix gexp)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix git-download)
@@ -352,7 +354,7 @@ FOSS FPGA place and route tool.")
(define-public gtkwave
(package
(name "gtkwave")
- (version "3.3.111")
+ (version "3.3.113")
(source
(origin
(method url-fetch)
@@ -362,23 +364,20 @@ FOSS FPGA place and route tool.")
(string-append "http://gtkwave.sourceforge.net/"
"gtkwave-" version ".tar.gz")))
(sha256
- (base32 "15n2gv2hd7h23cci95ij7yr71fkxppb209sfdsmmngh3fik09rpn"))))
+ (base32 "1zqkfchmns5x90qxa8kg39bfhax3vxf1mrdz3lhyb9fz1gp4difn"))))
(build-system gnu-build-system)
(native-inputs
(list gperf pkg-config))
(inputs
- `(("tcl" ,tcl)
- ("tk" ,tk)
- ("gtk+-2" ,gtk+-2)))
+ (list tcl tk gtk+-2))
(arguments
- `(#:configure-flags
- (list (string-append "--with-tcl="
- (assoc-ref %build-inputs "tcl")
- "/lib")
- (string-append "--with-tk="
- (assoc-ref %build-inputs "tk")
- "/lib"))))
-
+ (list #:configure-flags
+ #~(list (string-append "--with-tcl="
+ (assoc-ref %build-inputs "tcl")
+ "/lib")
+ (string-append "--with-tk="
+ (assoc-ref %build-inputs "tk")
+ "/lib"))))
(synopsis "Waveform viewer for FPGA simulator trace files")
(description "This package is a waveform viewer for FPGA
simulator trace files (@dfn{FST}).")
- branch master updated (f78cfcd7d3 -> 68d79a8b60), guix-commits, 2022/10/11
- 01/11: guix import: Add a blank line after each package definition., guix-commits, 2022/10/11
- 02/11: git: Factorize 'commit-id?' predicate., guix-commits, 2022/10/11
- 03/11: Revert "guix system: Remove unused 'read-operating-system' procedure.", guix-commits, 2022/10/11
- 04/11: gnu: emacs-guix: Update to cf5b7a4., guix-commits, 2022/10/11
- 05/11: gnu: emacs-guix: Remove input labels., guix-commits, 2022/10/11
- 06/11: gnu: python-pydyf: Update to 0.3.0., guix-commits, 2022/10/11
- 10/11: gnu: profanity: Update to 0.13.0., guix-commits, 2022/10/11
- 07/11: gnu: gtkwave: Update to 3.3.113.,
guix-commits <=
- 09/11: gnu: libstrophe: Update to 0.12.2., guix-commits, 2022/10/11
- 11/11: gnu: Add libskk., guix-commits, 2022/10/11
- 08/11: gnu: mmg: Add dependency on Perl., guix-commits, 2022/10/11