mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
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:
parent
5fa84fb1a8
commit
ee69ee419b
23
pkgs/development/libraries/liquid-dsp/default.nix
Normal file
23
pkgs/development/libraries/liquid-dsp/default.nix
Normal file
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user