nixpkgs-suyu/pkgs/applications/radio/soapyairspy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
725 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake
2018-04-25 19:01:40 +02:00
, airspy, soapysdr
} :
2021-06-30 14:58:07 +02:00
stdenv.mkDerivation rec {
2019-08-13 23:52:01 +02:00
pname = "soapyairspy";
2021-06-30 14:58:07 +02:00
version = "0.2.0";
2018-04-25 19:01:40 +02:00
src = fetchFromGitHub {
owner = "pothosware";
repo = "SoapyAirspy";
rev = "soapy-airspy-${version}";
2021-06-30 14:58:07 +02:00
sha256 = "0g23yybnmq0pg2m8m7dbhif8lw0hdsmnnjym93fdyxfk5iln7fsc";
2018-04-25 19:01:40 +02:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ airspy soapysdr ];
cmakeFlags = [ "-DSoapySDR_DIR=${soapysdr}/share/cmake/SoapySDR/" ];
meta = with lib; {
homepage = "https://github.com/pothosware/SoapyAirspy";
2018-04-25 19:01:40 +02:00
description = "SoapySDR plugin for Airspy devices";
license = licenses.mit;
maintainers = with maintainers; [ markuskowa ];
platforms = platforms.linux;
};
}