gnu: gtkwave: Prefer mirror://sourceforge source URI.
* gnu/packages/fpga.scm (gtkwave)[source]: Add URI.master
parent
542d64fd84
commit
82f81ffac6
gnu/packages
|
@ -1,7 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2016 Danny Milosavljevic <dannym@scratchpost.org>
|
;;; Copyright © 2016 Danny Milosavljevic <dannym@scratchpost.org>
|
||||||
;;; Copyright © 2016, 2017 Theodoros Foradis <theodoros@foradis.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>
|
;;; Copyright © 2019 Amin Bandali <mab@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -302,13 +302,16 @@ Includes the actual FTDI connector.")
|
||||||
(package
|
(package
|
||||||
(name "gtkwave")
|
(name "gtkwave")
|
||||||
(version "3.3.101")
|
(version "3.3.101")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "http://gtkwave.sourceforge.net/"
|
(method url-fetch)
|
||||||
"gtkwave-" version ".tar.gz"))
|
(uri (list (string-append "mirror://sourceforge/gtkwave/"
|
||||||
(sha256
|
"gtkwave-" version "/"
|
||||||
(base32
|
"gtkwave-" version ".tar.gz")
|
||||||
"1j6capxwgi8aj3sgqg1r7161icni9y8y93g1rl3bzd3s40jcyhsz"))))
|
(string-append "http://gtkwave.sourceforge.net/"
|
||||||
|
"gtkwave-" version ".tar.gz")))
|
||||||
|
(sha256
|
||||||
|
(base32 "1j6capxwgi8aj3sgqg1r7161icni9y8y93g1rl3bzd3s40jcyhsz"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("gperf" ,gperf)
|
`(("gperf" ,gperf)
|
||||||
|
|
Reference in New Issue