liquid-dsp: init at 20170307

liquid-dsp is a dependency for the latest git version of inspectrum, therefore I
added it in order to be able to upgrade inspectrum.
This commit is contained in:
Marius Bergmann 2017-03-14 22:02:43 +01:00
parent 5fa84fb1a8
commit ee69ee419b
2 changed files with 25 additions and 0 deletions

@ -0,0 +1,23 @@
{stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
name = "liquid-dsp-${version}";
version = "20170307";
src = fetchFromGitHub {
owner = "jgaeddert";
repo = "liquid-dsp";
rev = "8c1978fa4f5662b8849fe712be716958f29cec0e";
sha256 = "0zpxvdsrw0vzzp3iaag3wh4z8ygl7fkswgjppp2fz2zhhqh93k2w";
};
nativeBuildInputs = [ autoreconfHook ];
meta = {
homepage = http://liquidsdr.org/;
description = "Digital signal processing library for software-defined radios";
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.unix;
};
}

@ -8865,6 +8865,8 @@ with pkgs;
lirc = callPackage ../development/libraries/lirc { };
liquid-dsp = callPackage ../development/libraries/liquid-dsp { };
liquidfun = callPackage ../development/libraries/liquidfun { };
live555 = callPackage ../development/libraries/live555 { };