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

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

90 lines
2.1 KiB
Nix
Raw Normal View History

{ stdenv
, lib
, fetchFromGitHub
, fetchpatch
, cmake
, pkg-config
, makeWrapper
, libusb-compat-0_1
, ncurses
, usePython ? false
, python ? null
, swig2
, extraPackages ? [ ]
2023-04-22 19:43:58 +00:00
, buildPackages
, testers
}:
2018-04-25 17:01:40 +00:00
stdenv.mkDerivation (finalAttrs: {
2019-08-13 21:52:01 +00:00
pname = "soapysdr";
version = "0.8.1";
2018-04-25 17:01:40 +00:00
src = fetchFromGitHub {
owner = "pothosware";
repo = "SoapySDR";
rev = "soapy-sdr-${finalAttrs.version}";
2021-07-30 16:20:24 +00:00
sha256 = "19f2x0pkxvf9figa0pl6xqlcz8fblvqb19mcnj632p0l8vk6qdv2";
2018-04-25 17:01:40 +00:00
};
2022-07-24 18:55:23 +00:00
patches = [
# Fix for https://github.com/pothosware/SoapySDR/issues/352
(fetchpatch {
url = "https://github.com/pothosware/SoapySDR/commit/10c05b3e52caaa421147d6b4623eccd3fc3be3f4.patch";
hash = "sha256-D7so6NSZiU6SXbzns04Q4RjSZW0FJ+MYobvvVpVMjws=";
})
2022-07-24 18:55:23 +00:00
];
nativeBuildInputs = [
cmake
pkg-config
makeWrapper
];
buildInputs = [
libusb-compat-0_1
ncurses
] ++ lib.optionals usePython [
python
swig2
];
2018-04-25 17:01:40 +00:00
propagatedBuildInputs = lib.optionals usePython [
python.pkgs.numpy
];
2018-04-25 17:01:40 +00:00
cmakeFlags = lib.optionals usePython [
"-DUSE_PYTHON_CONFIG=ON"
];
2022-05-18 19:31:38 +00:00
postFixup = lib.optionalString (extraPackages != [ ]) (
2018-04-25 17:01:40 +00:00
# Join all plugins via symlinking
lib.pipe extraPackages [
(map (pkg: ''
${buildPackages.xorg.lndir}/bin/lndir -silent ${pkg} $out
''))
lib.concatStrings
] + ''
# Needed for at least the remote plugin server
for file in $out/bin/*; do
wrapProgram "$file" --prefix SOAPY_SDR_PLUGIN_PATH : ${lib.escapeShellArg (
lib.makeSearchPath finalAttrs.passthru.searchPath extraPackages
)}
done
''
);
2018-04-25 17:01:40 +00:00
passthru = {
tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
searchPath = "lib/SoapySDR/modules${lib.versions.majorMinor finalAttrs.version}";
};
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 ];
mainProgram = "SoapySDRUtil";
pkgConfigModules = [ "SoapySDR" ];
2021-09-30 22:29:01 +00:00
platforms = platforms.unix;
2018-04-25 17:01:40 +00:00
};
})