guix-commits
[Top][All Lists]
Advanced

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

03/03: gnu: flwrap: Use git repository.


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

glv pushed a commit to branch master
in repository guix.

commit 689b525db0a9f7dcc6e4cd5ba1ca4fbc06162ccb
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Fri Feb 12 14:54:00 2021 +0100

    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.
---
 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 53c9d20..55756c5 100644
--- a/gnu/packages/radio.scm
+++ b/gnu/packages/radio.scm
@@ -686,14 +686,18 @@ or USB connection.")
     (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)



reply via email to

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