diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-01-23 22:57:16 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-01-23 22:57:16 +0100 |
commit | db0e9fe42c419c8c8010dbad6080ed66028c03ec (patch) | |
tree | 514a0d8fe5465db9a950ac20579e5d3e37bc385b /gnu/packages/fpga.scm | |
parent | 43190ac64c5181841d68beade4d19e792f4f38a2 (diff) | |
parent | 82a2bd3a4ee09c04b51b948f1e952402d6a26f88 (diff) | |
download | guix-db0e9fe42c419c8c8010dbad6080ed66028c03ec.tar.gz |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/fpga.scm')
-rw-r--r-- | gnu/packages/fpga.scm | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm index 988129f373..46c917b0d5 100644 --- a/gnu/packages/fpga.scm +++ b/gnu/packages/fpga.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016 Danny Milosavljevic <dannym@scratchpost.org> ;;; Copyright © 2016, 2017 Theodoros Foradis <theodoros@foradis.org> -;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2019 Amin Bandali <mab@gnu.org> ;;; ;;; This file is part of GNU Guix. @@ -301,14 +301,17 @@ Includes the actual FTDI connector.") (define-public gtkwave (package (name "gtkwave") - (version "3.3.101") - (source (origin - (method url-fetch) - (uri (string-append "http://gtkwave.sourceforge.net/" - "gtkwave-" version ".tar.gz")) - (sha256 - (base32 - "1j6capxwgi8aj3sgqg1r7161icni9y8y93g1rl3bzd3s40jcyhsz")))) + (version "3.3.103") + (source + (origin + (method url-fetch) + (uri (list (string-append "mirror://sourceforge/gtkwave/" + "gtkwave-" version "/" + "gtkwave-" version ".tar.gz") + (string-append "http://gtkwave.sourceforge.net/" + "gtkwave-" version ".tar.gz"))) + (sha256 + (base32 "1xzaxqbabj4sb4n10yki5acglx3736pwl3kwlq4k7i96rzvsn9f3")))) (build-system gnu-build-system) (native-inputs `(("gperf" ,gperf) |