lol

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.

+25
+23
pkgs/development/libraries/liquid-dsp/default.nix
··· 1 + {stdenv, fetchFromGitHub, autoreconfHook }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "liquid-dsp-${version}"; 5 + version = "20170307"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "jgaeddert"; 9 + repo = "liquid-dsp"; 10 + rev = "8c1978fa4f5662b8849fe712be716958f29cec0e"; 11 + sha256 = "0zpxvdsrw0vzzp3iaag3wh4z8ygl7fkswgjppp2fz2zhhqh93k2w"; 12 + }; 13 + 14 + nativeBuildInputs = [ autoreconfHook ]; 15 + 16 + meta = { 17 + homepage = http://liquidsdr.org/; 18 + description = "Digital signal processing library for software-defined radios"; 19 + license = stdenv.lib.licenses.mit; 20 + platforms = stdenv.lib.platforms.unix; 21 + }; 22 + 23 + }
+2
pkgs/top-level/all-packages.nix
··· 8865 8865 8866 8866 lirc = callPackage ../development/libraries/lirc { }; 8867 8867 8868 + liquid-dsp = callPackage ../development/libraries/liquid-dsp { }; 8869 + 8868 8870 liquidfun = callPackage ../development/libraries/liquidfun { }; 8869 8871 8870 8872 live555 = callPackage ../development/libraries/live555 { };