guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: soapyhackrf: Update to 0.3.3-1.fa83fac.


From: guix-commits
Subject: branch master updated: gnu: soapyhackrf: Update to 0.3.3-1.fa83fac.
Date: Tue, 08 Jun 2021 13:07:47 -0400

This is an automated email from the git hooks/post-receive script.

glv pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 0c0d846  gnu: soapyhackrf: Update to 0.3.3-1.fa83fac.
0c0d846 is described below

commit 0c0d84603d63ae9eb04edf39582a6b222389c962
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Tue Jun 8 19:04:45 2021 +0200

    gnu: soapyhackrf: Update to 0.3.3-1.fa83fac.
    
    * gnu/packages/radio.scm (soapyhackrf): Update to 0.3.3-1.fa83fac.
---
 gnu/packages/radio.scm | 50 +++++++++++++++++++++++++++-----------------------
 1 file changed, 27 insertions(+), 23 deletions(-)

diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm
index b3a6ace..300f761 100644
--- a/gnu/packages/radio.scm
+++ b/gnu/packages/radio.scm
@@ -313,29 +313,33 @@ SoapySDR library.")
     (license license:expat)))
 
 (define-public soapyhackrf
-  (package
-    (name "soapyhackrf")
-    (version "0.3.3")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/pothosware/SoapyHackRF";)
-             (commit (string-append "soapy-hackrf-" version))))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32 "1awn89z462500gb3fjb7x61b1znkjri9n1d39bqfip1qk4s11pxc"))))
-    (build-system cmake-build-system)
-    (inputs
-     `(("hackrf" ,hackrf)
-       ("soapysdr" ,soapysdr)))
-    (arguments
-     `(#:tests? #f))  ; No test suite
-    (home-page "https://github.com/pothosware/SoapyHackRF/wiki";)
-    (synopsis "SoapySDR HackRF module")
-    (description
-     "This package provides HackRF devices support to the SoapySDR library.")
-    (license license:expat)))
+  ;; Use commit because some fixes are not in a release yet
+  ;; (last release was in 2018).
+  (let ((commit "fa83fac695fad9e198cc9a19a1e1a9c344fc191f")
+        (revision "1"))
+    (package
+      (name "soapyhackrf")
+      (version (git-version "0.3.3" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/pothosware/SoapyHackRF";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0sfb2gq4lp1fff921xm3bqqjv3srdsczjj8ps5jfhxhr6yx3a329"))))
+      (build-system cmake-build-system)
+      (inputs
+       `(("hackrf" ,hackrf)
+         ("soapysdr" ,soapysdr)))
+      (arguments
+       `(#:tests? #f))  ; No test suite
+      (home-page "https://github.com/pothosware/SoapyHackRF/wiki";)
+      (synopsis "SoapySDR HackRF module")
+      (description
+       "This package provides HackRF devices support to the SoapySDR library.")
+      (license license:expat))))
 
 (define-public soapyrtlsdr
   (package



reply via email to

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