nixpkgs/pkgs/applications/radio/soapybladerf/default.nix

33 lines
792 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, pkg-config
2018-04-25 17:01:40 +00:00
, libbladeRF, soapysdr
} :
let
2019-02-11 22:51:14 +00:00
version = "0.4.1";
2018-04-25 17:01:40 +00:00
in stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "soapybladerf";
inherit version;
2018-04-25 17:01:40 +00:00
src = fetchFromGitHub {
owner = "pothosware";
repo = "SoapyBladeRF";
rev = "soapy-bladerf-${version}";
2019-02-11 22:51:14 +00:00
sha256 = "02wh09850vinqg248fw4lxmx7y857cqmnnb8jm9zhyrsggal0hki";
2018-04-25 17:01:40 +00:00
};
nativeBuildInputs = [ cmake pkg-config ];
2018-04-25 17:01:40 +00:00
buildInputs = [ libbladeRF soapysdr ];
cmakeFlags = [ "-DSoapySDR_DIR=${soapysdr}/share/cmake/SoapySDR/" ];
meta = with lib; {
homepage = "https://github.com/pothosware/SoapyBladeRF";
2018-04-25 17:01:40 +00:00
description = "SoapySDR plugin for BladeRF devices";
2021-02-01 12:31:48 +00:00
license = licenses.lgpl21Only;
2018-04-25 17:01:40 +00:00
maintainers = with maintainers; [ markuskowa ];
platforms = platforms.linux;
};
}