nixpkgs/pkgs/development/tools/build-managers/waf/hook.nix
Anderson Torres b3a1dd8469 waf: prefix all setup-hook variables with waf
Standardizing the behaviour of commit a79a8f29bc.
2023-09-06 10:41:28 -03:00

25 lines
634 B
Nix

{ lib
, stdenv
, pkgs
, makeSetupHook
, waf
}:
makeSetupHook {
name = "waf-setup-hook";
substitutions = {
# Sometimes the upstream provides its own waf file; in order to honor it,
# waf is not inserted into propagatedBuildInputs, rather it is inserted
# directly
inherit waf;
wafCrossFlags = lib.optionalString (stdenv.hostPlatform.system != stdenv.targetPlatform.system)
''--cross-compile "--cross-execute=${stdenv.targetPlatform.emulator pkgs}"'';
};
meta = {
description = "A setup hook for using Waf in Nixpkgs";
inherit (waf.meta) maintainers platforms broken;
};
} ./setup-hook.sh