mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
24 lines
659 B
Nix
24 lines
659 B
Nix
|
{ lib
|
||
|
, unwrapped
|
||
|
}:
|
||
|
|
||
|
mkDerivation:
|
||
|
|
||
|
args:
|
||
|
|
||
|
# Check if it's supposed to not get built for the current gnuradio version
|
||
|
if (builtins.hasAttr "disabledForGRafter" args) &&
|
||
|
(lib.versionAtLeast unwrapped.versionAttr.major args.disabledForGRafter) then
|
||
|
let name = args.name or "${args.pname}"; in
|
||
|
throw "Package ${name} is incompatible with GNURadio ${unwrapped.versionAttr.major}"
|
||
|
else
|
||
|
|
||
|
let
|
||
|
args_ = {
|
||
|
enableParallelBuilding = args.enableParallelBuilding or true;
|
||
|
nativeBuildInputs = (args.nativeBuildInputs or []);
|
||
|
# We add gnuradio itself by default
|
||
|
buildInputs = (args.buildInputs or []) ++ [ unwrapped ];
|
||
|
};
|
||
|
in mkDerivation (args // args_)
|