Merge branch 'staging' into core-updates
[jackhill/guix/guix.git] / gnu / packages / sdr.scm
CommitLineData
bcc8a8fd
CH
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2019 Christopher Howard <christopher@librehacker.com>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu packages sdr)
20 #:use-module ((guix licenses) #:prefix license:)
21 #:use-module (guix packages)
22 #:use-module (guix utils)
23 #:use-module (guix download)
24 #:use-module (guix git-download)
25 #:use-module (guix build-system gnu)
26 #:use-module (gnu packages)
27 #:use-module (gnu packages algebra)
28 #:use-module (gnu packages autotools))
29
30(define-public liquid-dsp
31 (package
32 (name "liquid-dsp")
33 (version "1.3.2")
34 (source
35 (origin (method git-fetch)
36 (uri (git-reference
37 (url "https://github.com/jgaeddert/liquid-dsp.git")
38 (commit (string-append "v" version))))
39 (file-name (git-file-name name version))
40 (sha256
41 (base32 "1n6dbg13q8ga5qhg1yiszwly4jj0rxqr6f1xwm9waaly5z493xsd"))))
42 (build-system gnu-build-system)
43 (native-inputs
44 `(("autoconf" ,autoconf)))
45 (inputs
46 `(("fftw" ,fftw)
47 ("fftwf" ,fftwf)))
48 (home-page "https://liquidsdr.org")
49 (synopsis "Signal processing library for software-defined radios")
50 (description
51 "Liquid DSP is a @dfn{digital signal processing} (DSP) library designed
52specifically for software-defined radios on embedded platforms. The aim is to
53provide a lightweight DSP library that does not rely on a myriad of external
54dependencies or proprietary and otherwise cumbersome frameworks. All signal
55processing elements are designed to be flexible, scalable, and dynamic,
56including filters, filter design, oscillators, modems, synchronizers, complex
57mathematical operations, and much more.")
58 (license license:expat)))