unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Guillaume Le Vaillant <glv@posteo.net>
To: 48217@debbugs.gnu.org
Cc: Guillaume Le Vaillant <glv@posteo.net>
Subject: [bug#48217] [PATCH v2 9/9] gnu: Add sdrangel.
Date: Wed,  5 May 2021 08:48:24 +0000	[thread overview]
Message-ID: <20210505084824.22275-9-glv@posteo.net> (raw)
In-Reply-To: <20210505084824.22275-1-glv@posteo.net>

* gnu/packages/radio.scm (sdrangel): New variable.
---
 gnu/packages/radio.scm | 73 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 73 insertions(+)

diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm
index 1a8f21bfab..909e086a68 100644
--- a/gnu/packages/radio.scm
+++ b/gnu/packages/radio.scm
@@ -31,6 +31,7 @@
   #:use-module (guix utils)
   #:use-module (gnu packages admin)
   #:use-module (gnu packages algebra)
+  #:use-module (gnu packages astronomy)
   #:use-module (gnu packages audio)
   #:use-module (gnu packages autotools)
   #:use-module (gnu packages base)
@@ -52,9 +53,11 @@
   #:use-module (gnu packages gnome)
   #:use-module (gnu packages golang)
   #:use-module (gnu packages gps)
+  #:use-module (gnu packages graphviz)
   #:use-module (gnu packages gstreamer)
   #:use-module (gnu packages gtk)
   #:use-module (gnu packages image)
+  #:use-module (gnu packages image-processing)
   #:use-module (gnu packages javascript)
   #:use-module (gnu packages libusb)
   #:use-module (gnu packages linux)
@@ -1741,3 +1744,73 @@ Audio Broadcasting}.")
      "This package provides a library and a program to decode several digital
 voice formats.")
     (license license:gpl3+)))
+
+(define-public sdrangel
+  (package
+    (name "sdrangel")
+    (version "6.10.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/f4exb/sdrangel")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0dpymjpg1x7yyrlhh8sdmf5l7il9ymx32zcpm78wwrw3df4q1w3m"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("doxygen" ,doxygen)
+       ("graphviz" ,graphviz)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("airspyhf" ,airspyhf)
+       ("alsa-lib" ,alsa-lib)
+       ("aptdec" ,aptdec)
+       ("boost" ,boost)
+       ("cm256cc" ,cm256cc)
+       ("codec2" ,codec2)
+       ("dsdcc" ,dsdcc)
+       ("faad2" ,faad2)
+       ("ffmpeg" ,ffmpeg)
+       ("fftwf" ,fftwf)
+       ("hackrf" ,hackrf)
+       ("libdab" ,libdab)
+       ("libusb" ,libusb)
+       ("mbelib" ,mbelib)
+       ("opencv" ,opencv)
+       ("opus" ,opus)
+       ("pulseaudio" ,pulseaudio)
+       ("qtbase" ,qtbase)
+       ("qtcharts" ,qtcharts)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtlocation" ,qtlocation)
+       ("qtmultimedia" ,qtmultimedia)
+       ("qtserialport" ,qtserialport)
+       ("qtspeech" ,qtspeech)
+       ("qtwebsockets" ,qtwebsockets)
+       ("rtl-sdr" ,rtl-sdr)
+       ("serialdv" ,serialdv)
+       ("sgp4" ,sgp4)
+       ("zlib" ,zlib)))
+    (arguments
+     `(#:tests? #f  ; No test suite.
+       #:configure-flags
+       (list (string-append "-DAPT_DIR="
+                            (assoc-ref %build-inputs "aptdec"))
+             (string-append "-DDAB_DIR="
+                            (assoc-ref %build-inputs "libdab"))
+             (string-append "-DDSDCC_DIR="
+                            (assoc-ref %build-inputs "dsdcc"))
+             (string-append "-DMBE_DIR="
+                            (assoc-ref %build-inputs "mbelib"))
+             (string-append "-DSERIALDV_DIR="
+                            (assoc-ref %build-inputs "serialdv"))
+             (string-append "-DSGP4_DIR="
+                            (assoc-ref %build-inputs "sgp4")))))
+    (home-page "https://github.com/f4exb/sdrangel/wiki")
+    (synopsis "Software defined radio")
+    (description
+     "SDRangel is a Qt software defined radio and signal analyzer frontend for
+various hardware.")
+    (license license:gpl3+)))
-- 
2.31.1





  parent reply	other threads:[~2021-05-05  8:50 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-04  8:46 [bug#48217] [PATCH 0/9] Add sdrangel Guillaume Le Vaillant
2021-05-04  8:56 ` [bug#48217] [PATCH 1/9] gnu: Add csdr Guillaume Le Vaillant
2021-05-04  8:56   ` [bug#48217] [PATCH 2/9] gnu: Add serialdv Guillaume Le Vaillant
2021-05-04  8:56   ` [bug#48217] [PATCH 3/9] gnu: aptdec: Update to 1.7-1.5f91799 Guillaume Le Vaillant
2021-05-04  8:57   ` [bug#48217] [PATCH 4/9] gnu: Add cm256cc Guillaume Le Vaillant
2021-05-04  8:57   ` [bug#48217] [PATCH 5/9] gnu: Add libdab Guillaume Le Vaillant
2021-05-04  8:57   ` [bug#48217] [PATCH 6/9] gnu: Add sgp4 Guillaume Le Vaillant
2021-05-04  8:57   ` [bug#48217] [PATCH 7/9] gnu: Add sdrangel Guillaume Le Vaillant
2021-05-04  8:57   ` [bug#48217] [PATCH 8/9] gnu: Add dsdcc Guillaume Le Vaillant
2021-05-04  8:57   ` [bug#48217] [PATCH 9/9] gnu: sdrangel: Add dsdcc support Guillaume Le Vaillant
2021-05-04 16:39     ` Leo Famulari
2021-05-04 20:02     ` Leo Famulari
2021-05-04 21:48       ` Guillaume Le Vaillant
2021-05-04 20:00   ` [bug#48217] [PATCH 1/9] gnu: Add csdr Leo Famulari
2021-05-04 21:34     ` Guillaume Le Vaillant
2021-05-04 16:38 ` [bug#48217] [PATCH 0/9] Add sdrangel Leo Famulari
2021-05-05  8:48   ` [bug#48217] [PATCH v2 1/9] gnu: Add csdr Guillaume Le Vaillant
2021-05-05  8:48     ` [bug#48217] [PATCH v2 2/9] gnu: Add serialdv Guillaume Le Vaillant
2021-05-05  8:48     ` [bug#48217] [PATCH v2 3/9] gnu: aptdec: Update to 1.7-1.5f91799 Guillaume Le Vaillant
2021-05-05  8:48     ` [bug#48217] [PATCH v2 4/9] gnu: Add cm256cc Guillaume Le Vaillant
2021-05-05 11:22       ` Maxime Devos
2021-05-05 13:37         ` Guillaume Le Vaillant
2021-05-05  8:48     ` [bug#48217] [PATCH v2 5/9] gnu: Add libdab Guillaume Le Vaillant
2021-05-05  8:48     ` [bug#48217] [PATCH v2 6/9] gnu: Add sgp4 Guillaume Le Vaillant
2021-05-05  8:48     ` [bug#48217] [PATCH v2 7/9] gnu: Add mbelib Guillaume Le Vaillant
2021-05-05  8:48     ` [bug#48217] [PATCH v2 8/9] gnu: Add dsdcc Guillaume Le Vaillant
2021-05-05  8:48     ` Guillaume Le Vaillant [this message]
2021-05-07 16:48     ` bug#48217: [PATCH 0/9] Add sdrangel Guillaume Le Vaillant
2021-05-08  2:32       ` [bug#48217] " Leo Famulari

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210505084824.22275-9-glv@posteo.net \
    --to=glv@posteo.net \
    --cc=48217@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).