;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2017 Arun Isaac ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages ham-radio) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) #:use-module (gnu packages libusb) #:use-module (gnu packages pkg-config) #:use-module (guix build-system cmake)) (define-public rtl-sdr (package (name "rtl-sdr") (version "0.5.3") (source (origin (method url-fetch) (uri (string-append "https://cgit.osmocom.org/rtl-sdr/snapshot/rtl-sdr-" version ".tar.xz")) (sha256 (base32 "08awca3v28sa4lxym4r81pzf0la0j86wbmpyhv3xd53an9gkpjy9")))) (build-system cmake-build-system) (inputs `(("libusb" ,libusb))) (native-inputs `(("pkg-config" ,pkg-config))) (arguments `(#:configure-flags '("-DDETACH_KERNEL_DRIVER=ON") #:tests? #f)) ; No tests (home-page "https://osmocom.org/projects/sdr/wiki/rtl-sdr") (synopsis "Software defined radio driver for Realtek RTL2832U") (description "DVB-T dongles based on the Realtek RTL2832U can be used as a cheap software defined radio, since the chip allows transferring the raw I/Q samples to the host. @code{rtl-sdr} provides drivers for this purpose.") (license license:gpl2+)))
AgeCommit message (Expand)Author
2018-08-29gnu: python-trezor: Update to 0.10.2....* gnu/packages/finance.scm (python-trezor): Update to 0.10.2. [arguments]: Replace check with tests that do not require hardware device. [propagated-inputs]: Add python-click, python-libusb1, python-pyblake2 and python-typing. [native-inputs]: Add python-mock and python-pytest. Signed-off-by: Leo Famulari <leo@famulari.name> Vagrant Cascadian
2018-08-28gnu: electron-cash: Update to 3.3.1....* gnu/packages/finance.scm (electron-cash): Update to 3.3.1. Signed-off-by: Leo Famulari <leo@famulari.name> Vagrant Cascadian
2018-08-09gnu: python-duniterpy: Update home page....* gnu/packages/finance.scm (python-duniterpy) [home-page]: Update URL. Nicolas Goaziou
2018-08-09gnu: python-duniterpy: Update to 0.43.7....* gnu/packages/finance.scm (python-duniterpy): Update to 0.43.7. [source]: Change upstream repository, which moved to a Gitlab instance. [arguments]: Remove phase removing a failing test, no longer needed. Nicolas Goaziou
2018-07-30gnu: monero-gui: Build with modular qt....* gnu/packages/finance.scm (monero-gui)[inputs]: Remove qt, add qtbase, qtdeclarative, qtgraphicaleffects, qtquickcontrols. [native-inputs]: Add qttools. [arguments]: Add a custom phase to patch the absolute file-name of lrelease and lupdate. Add a custom phase to wrap the executable with QT environmental variables. Efraim Flashner
2018-07-29gnu: monero-gui: Use git-file-name....* gnu/packages/finance.scm (monero-gui)[source]: Rename the downloaded source using 'git-file-name'. Efraim Flashner
2018-07-29gnu: monero: Use git-file-name....* gnu/packages/finance.scm (monero)[source]: Rename the downloaded source using 'git-file-name'. Efraim Flashner