nixpkgs/pkgs/development/tools/build-managers/waf/default.nix

40 lines
1005 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitLab, python, ensureNewerSourcesForZipFilesHook
# optional list of extra waf tools, e.g. `[ "doxygen" "pytest" ]`
, withTools ? null
}:
let
wafToolsArg = with stdenv.lib.strings;
optionalString (!isNull withTools) " --tools=\"${concatStringsSep "," withTools}\"";
in
2016-02-10 19:34:05 +00:00
stdenv.mkDerivation rec {
pname = "waf";
2020-04-07 22:15:08 +01:00
version = "2.0.20";
2016-02-10 19:34:05 +00:00
src = fetchFromGitLab {
owner = "ita1024";
repo = "waf";
rev = "${pname}-${version}";
2020-04-07 22:15:08 +01:00
sha256 = "1xbd1lmchq9pdrplkr2db28xqafyw753qbhnrfn8pxdg3inxxqvq";
2016-02-10 19:34:05 +00:00
};
buildInputs = [ python ensureNewerSourcesForZipFilesHook ];
2016-02-10 19:34:05 +00:00
configurePhase = ''
python waf-light configure
'';
buildPhase = ''
python waf-light build${wafToolsArg}
2016-02-10 19:34:05 +00:00
'';
installPhase = ''
install -D waf $out/bin/waf
2016-02-10 19:34:05 +00:00
'';
2016-06-27 05:56:50 +01:00
meta = with stdenv.lib; {
2016-02-10 19:34:05 +00:00
description = "Meta build system";
homepage = "https://waf.io";
2016-06-27 05:56:50 +01:00
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ vrthra ];
2016-02-10 19:34:05 +00:00
};
}