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