me
/
guix
Archived
1
0
Fork 0

gnu: flamp: Use git repository.

The tarballs of older versions are not kept on the website.

* gnu/packages/radio.scm (flamp)[source]: Switch to git repository.
  [native-inputs]: Add autoconf and automake.
master
Guillaume Le Vaillant 2021-02-12 14:49:47 +01:00
parent 9e54963382
commit 224582c54f
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 9 additions and 5 deletions

View File

@ -655,14 +655,18 @@ or USB connection.")
(version "2.2.05")
(source
(origin
(method url-fetch)
(uri (string-append "http://www.w1hkj.com/files/flamp/flamp-"
version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://git.code.sf.net/p/fldigi/flamp")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "19z1kghhdf7bq6hi2j0mzlsn2nhpn3gl1a623x3inmsk80yw3ck4"))))
(base32 "0ll2wbhyh1sb4iqsypwrd118mrgw3vbsdbz442qhk4r6l8kjzblq"))))
(build-system gnu-build-system)
(native-inputs
`(("pkg-config" ,pkg-config)))
`(("autoconf" ,autoconf)
("automake" ,automake)
("pkg-config" ,pkg-config)))
(inputs
`(("fltk" ,fltk)
("libx11" ,libx11)