gnu: rtl-sdr: Update to 0.6.0.

* gnu/packages/ham-radio.scm (rtl-sdr): Update to 0.6.0.

Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
Evan Straw 2020-01-01 03:20:22 +00:00 committed by Ricardo Wurmus
parent b94cf161d0
commit d7cefb0b8b
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC

View File

@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2017, 2018, 2019 Arun Isaac <arunisaac@systemreboot.net> ;;; Copyright © 2017, 2018, 2019 Arun Isaac <arunisaac@systemreboot.net>
;;; Copyright © 2019 Evan Straw <evan.straw99@gmail.com>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -36,15 +37,17 @@
(define-public rtl-sdr (define-public rtl-sdr
(package (package
(name "rtl-sdr") (name "rtl-sdr")
(version "0.5.3") (version "0.6.0")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://cgit.osmocom.org/rtl-sdr/snapshot/rtl-sdr-" (uri (git-reference
version ".tar.xz")) (url "git://git.osmocom.org/rtl-sdr.git")
(commit version)))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"08awca3v28sa4lxym4r81pzf0la0j86wbmpyhv3xd53an9gkpjy9")))) "0lmvsnb4xw4hmz6zs0z5ilsah5hjz29g1s0050n59fllskqr3b8k"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(inputs (inputs
`(("libusb" ,libusb))) `(("libusb" ,libusb)))