2021-01-21 17:00:13 +00:00
|
|
|
{lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
2017-03-14 21:02:43 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "liquid-dsp";
|
2017-03-14 21:02:43 +00:00
|
|
|
version = "20170307";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jgaeddert";
|
|
|
|
repo = "liquid-dsp";
|
|
|
|
rev = "8c1978fa4f5662b8849fe712be716958f29cec0e";
|
|
|
|
sha256 = "0zpxvdsrw0vzzp3iaag3wh4z8ygl7fkswgjppp2fz2zhhqh93k2w";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://liquidsdr.org/";
|
2017-03-14 21:02:43 +00:00
|
|
|
description = "Digital signal processing library for software-defined radios";
|
2021-01-21 17:00:13 +00:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
platforms = lib.platforms.unix;
|
2017-03-14 21:02:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|