linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / liquid-dsp / default.nix
blob746771f44fe4354f8897dca873e38f3cfd24614d
1 {lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation {
4   pname = "liquid-dsp";
5   version = "20170307";
7   src = fetchFromGitHub {
8     owner = "jgaeddert";
9     repo = "liquid-dsp";
10     rev = "8c1978fa4f5662b8849fe712be716958f29cec0e";
11     sha256 = "0zpxvdsrw0vzzp3iaag3wh4z8ygl7fkswgjppp2fz2zhhqh93k2w";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
16   meta = {
17     homepage = "https://liquidsdr.org/";
18     description = "Digital signal processing library for software-defined radios";
19     license = lib.licenses.mit;
20     platforms = lib.platforms.unix;
21   };