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

56 lines
1.6 KiB
Nix
Raw Normal View History

2018-04-25 17:01:40 +00:00
{ stdenv, lib, lndir, makeWrapper
, fetchFromGitHub, cmake
2020-04-28 03:29:39 +00:00
, libusb-compat-0_1, pkgconfig
, usePython ? false
, python, ncurses, swig2
2018-04-25 17:01:40 +00:00
, extraPackages ? []
} :
let
2020-01-13 20:47:57 +00:00
version = "0.7.2";
modulesVersion = with lib; versions.major version + "." + versions.minor version;
modulesPath = "lib/SoapySDR/modules" + modulesVersion;
extraPackagesSearchPath = lib.makeSearchPath modulesPath extraPackages;
2018-04-25 17:01:40 +00:00
in stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "soapysdr";
inherit version;
2018-04-25 17:01:40 +00:00
src = fetchFromGitHub {
owner = "pothosware";
repo = "SoapySDR";
rev = "soapy-sdr-${version}";
2020-01-13 20:47:57 +00:00
sha256 = "102wnpjxrwba20pzdh1vvx0yg1h8vqd8z914idxflg9p14r6v5am";
2018-04-25 17:01:40 +00:00
};
nativeBuildInputs = [ cmake makeWrapper pkgconfig ];
2020-04-28 03:29:39 +00:00
buildInputs = [ libusb-compat-0_1 ncurses ]
++ lib.optionals usePython [ python swig2 ];
propagatedBuildInputs = lib.optional usePython python.pkgs.numpy;
2018-04-25 17:01:40 +00:00
cmakeFlags = [
"-DCMAKE_BUILD_TYPE=Release"
] ++ lib.optional usePython "-DUSE_PYTHON_CONFIG=ON";
2018-04-25 17:01:40 +00:00
postFixup = lib.optionalString (lib.length extraPackages != 0) ''
# Join all plugins via symlinking
for i in ${toString extraPackages}; do
${lndir}/bin/lndir -silent $i $out
done
# Needed for at least the remote plugin server
2018-12-19 22:28:03 +00:00
for file in $out/bin/*; do
wrapProgram "$file" --prefix SOAPY_SDR_PLUGIN_PATH : ${extraPackagesSearchPath}
2018-04-25 17:01:40 +00:00
done
'';
meta = with lib; {
homepage = "https://github.com/pothosware/SoapySDR";
2018-04-25 17:01:40 +00:00
description = "Vendor and platform neutral SDR support library";
license = licenses.boost;
maintainers = with maintainers; [ markuskowa ];
platforms = platforms.linux;
};
}