mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: flwrap: Use git repository.
The tarballs of older versions are not kept on the website. * gnu/packages/radio.scm (flwrap)[source]: Switch to git repository. [native-inputs]: Add autoconf and automake.
This commit is contained in:
parent
224582c54f
commit
689b525db0
1 changed files with 9 additions and 5 deletions
|
@ -686,14 +686,18 @@ (define-public flwrap
|
|||
(version "1.3.5")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://www.w1hkj.com/files/flwrap/flwrap-"
|
||||
version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://git.code.sf.net/p/fldigi/flwrap")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0qqivqkkravcg7j45740xfky2q3k7czqpkj6y364qff424q2pppg"))))
|
||||
(base32 "0xkhr82smfr7wpb9xl05wf7bz3vi2mr4xkcr2s8v6mblhgsdhqwg"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
`(("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("fltk" ,fltk)
|
||||
("libx11" ,libx11)
|
||||
|
|
Loading…
Reference in a new issue