2020-02-02 18:41:47 +00:00
|
|
|
{ stdenv, fetchFromGitLab, python, ensureNewerSourcesForZipFilesHook
|
2019-06-17 15:23:52 +01:00
|
|
|
# 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 {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "waf";
|
2020-04-07 22:15:08 +01:00
|
|
|
version = "2.0.20";
|
2016-02-10 19:34:05 +00:00
|
|
|
|
2018-08-09 19:31:26 +01:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "ita1024";
|
|
|
|
repo = "waf";
|
2019-08-15 13:41:18 +01:00
|
|
|
rev = "${pname}-${version}";
|
2020-04-07 22:15:08 +01:00
|
|
|
sha256 = "1xbd1lmchq9pdrplkr2db28xqafyw753qbhnrfn8pxdg3inxxqvq";
|
2016-02-10 19:34:05 +00:00
|
|
|
};
|
|
|
|
|
2018-08-09 19:31:26 +01:00
|
|
|
buildInputs = [ python ensureNewerSourcesForZipFilesHook ];
|
2016-02-10 19:34:05 +00:00
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
python waf-light configure
|
|
|
|
'';
|
|
|
|
buildPhase = ''
|
2019-06-17 15:23:52 +01:00
|
|
|
python waf-light build${wafToolsArg}
|
2016-02-10 19:34:05 +00:00
|
|
|
'';
|
|
|
|
installPhase = ''
|
2020-03-06 05:08:06 +00:00
|
|
|
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";
|
2020-04-01 02:11:51 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|