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:
Guillaume Le Vaillant 2021-02-12 14:54:00 +01:00
parent 224582c54f
commit 689b525db0
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -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)