4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
56 lines
1.6 KiB
Nix
56 lines
1.6 KiB
Nix
{ stdenv, lib, lndir, makeWrapper
|
|
, fetchFromGitHub, cmake
|
|
, libusb-compat-0_1, pkgconfig
|
|
, usePython ? false
|
|
, python, ncurses, swig2
|
|
, extraPackages ? []
|
|
} :
|
|
|
|
let
|
|
|
|
version = "0.7.2";
|
|
modulesVersion = with lib; versions.major version + "." + versions.minor version;
|
|
modulesPath = "lib/SoapySDR/modules" + modulesVersion;
|
|
extraPackagesSearchPath = lib.makeSearchPath modulesPath extraPackages;
|
|
|
|
in stdenv.mkDerivation {
|
|
pname = "soapysdr";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pothosware";
|
|
repo = "SoapySDR";
|
|
rev = "soapy-sdr-${version}";
|
|
sha256 = "102wnpjxrwba20pzdh1vvx0yg1h8vqd8z914idxflg9p14r6v5am";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake makeWrapper pkgconfig ];
|
|
buildInputs = [ libusb-compat-0_1 ncurses ]
|
|
++ lib.optionals usePython [ python swig2 ];
|
|
|
|
propagatedBuildInputs = lib.optional usePython python.pkgs.numpy;
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_BUILD_TYPE=Release"
|
|
] ++ lib.optional usePython "-DUSE_PYTHON_CONFIG=ON";
|
|
|
|
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
|
|
for file in $out/bin/*; do
|
|
wrapProgram "$file" --prefix SOAPY_SDR_PLUGIN_PATH : ${extraPackagesSearchPath}
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/pothosware/SoapySDR";
|
|
description = "Vendor and platform neutral SDR support library";
|
|
license = licenses.boost;
|
|
maintainers = with maintainers; [ markuskowa ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|