guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: flamp: Use git repository.


From: guix-commits
Subject: 02/03: gnu: flamp: Use git repository.
Date: Fri, 12 Feb 2021 08:56:53 -0500 (EST)

glv pushed a commit to branch master
in repository guix.

commit 224582c54f3ff8f935c8e0fa56de4d5b0836d709
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Fri Feb 12 14:49:47 2021 +0100

    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.
---
 gnu/packages/radio.scm | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm
index 2b88db4..53c9d20 100644
--- a/gnu/packages/radio.scm
+++ b/gnu/packages/radio.scm
@@ -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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]