all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Danny Milosavljevic <dannym@scratchpost.org>
To: Arun Isaac <arunisaac@systemreboot.net>
Cc: 28133@debbugs.gnu.org
Subject: [bug#28133] [PATCH] gnu: Add rtl-sdr.; and gnuradio
Date: Fri, 18 Aug 2017 06:54:04 +0200	[thread overview]
Message-ID: <20170818065404.0b5a2b81@scratchpost.org> (raw)
In-Reply-To: <bb38c4bf.AEMAOm3D4LEAAAAAAAAAAAOtUOAAAAACwQwAAAAAAAW9WABZllYE@mailjet.com>

Hi Arun,

LGTM!  But are we sure about the new module?  I've used rtl-sdr in a professional non-HAM setting before.  I guess it's OK, though :)

Back then I put "volk" into (gnu packages engineering) and not into ham-radio.scm - we might want to revisit it?

Also, just in case you are working on it as well, I have work-in-progress for gnuradio (something fails so I didn't submit it yet).  It might save some effort in that case:

(define-public gnuradio
  (package
    (name "gnuradio")
    (version "3.7.10.2") ; see also: 3.7.11 (!)
    (source
      (origin
        (method url-fetch)
        (uri (string-append "http://gnuradio.org/releases/gnuradio/"
                            "gnuradio-" version ".tar.gz"))
        (sha256
          (base32
            "1yy8nkb6q61885j5k5sfqfas6yc15cadsil0rcyhyngp2223sdrh"))))
    (build-system cmake-build-system)
    (arguments
     `(#:parallel-tests? #f
       #:configure-flags
       '("-DENABLE_INTERNAL_VOLK=OFF")
       #:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'unbundle-volk
           (lambda _
             (delete-file-recursively "volk")
             #t))
         (add-before 'check 'setenv
           (lambda _
             (setenv "HOME" "/tmp")
             #t)))))
    (inputs
      `(;("qtbase" ,qtbase) Qt4
        ;("qtgui" ,qtgui) Qt4
        ("boost" ,boost) ; FIXME maybe remove
        ("fftwf" ,fftwf)
        ("gsl" ,gsl)
        ("libusb", libusb)
        ("wxwidgets" ,wxwidgets) ; -gtk2)
        ("python2-numpy" ,python2-numpy)
        ("volk" ,volk)
 ; TODO gui network widgets svg(runtimeonly)/imageformats
))
    (native-inputs
     `(("alsa-lib" ,alsa-lib) ; FIXME regular input?
       ("cppunit" ,cppunit)
       ("doxygen" ,doxygen) ; for docs
       ("gs" ,ghostscript) ; for docs
       ("orc" ,orc)
       ("pkg-config" ,pkg-config)
       ("python-2", python-2)
       ("python2-cheetah" ,python2-cheetah) ; FIXME maybe remove
       ("swig" ,swig)
       ("texlive-minimal" ,texlive-minimal) ; for docs
       ("python2-scipy" ,python2-scipy))) ; FIXME at runtime ?
    (home-page "https://www.gnuradio.org/")
    (synopsis "Software-defined radio")
    (description
      "This package contains tools for Software-defined radio.
For this to be useful as radio receiver you also need extra hardware.")
    (license license:gpl3+)))

(define-public gqrx
  (package
    (name "gqrx")
    (version "2.6")
    (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/csete/gqrx/releases/download/v2.6/"
                            "gqrx-sdr-" version "-src.tar.xz"))
        (sha256
          (base32
            "06jq50r0n86448q4l18hhzk5r6s4yzi2i1fc32ybjh06sqydsax8"))))
    (build-system cmake-build-system)
    ; FIXME propagate input qtsvg - see <https://bugs.launchpad.net/bugs/1652531>
    (inputs
     `(("qtbase" ,qtbase)
       ("gnuradio" ,gnuradio)
       ("boost" ,boost)))
    (home-page "http://gqrx.dk/")
    (synopsis "Software-defined radio")
    (description
      "This package contains tools for Software-defined radio.
For this to be useful as radio receiver you also need extra hardware.")
    ;; TODO simplified BSD
    (license license:gpl3+)))

  reply	other threads:[~2017-08-18  4:55 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-18  2:49 [bug#28133] [PATCH] gnu: Add rtl-sdr Arun Isaac
2017-08-18  4:54 ` Danny Milosavljevic [this message]
2017-08-18 14:23   ` bug#28133: [PATCH] gnu: Add rtl-sdr.; and gnuradio Arun Isaac
2017-08-18 18:27     ` [bug#28133] " Leo Famulari
2017-08-20  5:28   ` Arun Isaac

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

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

  git send-email \
    --in-reply-to=20170818065404.0b5a2b81@scratchpost.org \
    --to=dannym@scratchpost.org \
    --cc=28133@debbugs.gnu.org \
    --cc=arunisaac@systemreboot.net \
    /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 external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.