2020-02-02 19:41:47 +01:00
|
|
|
{ stdenv, fetchFromGitLab, python, ensureNewerSourcesForZipFilesHook
|
2019-06-17 16:23:52 +02: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 20:34:05 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "waf";
|
2020-02-02 19:41:47 +01:00
|
|
|
version = "2.0.19";
|
2016-02-10 20:34:05 +01:00
|
|
|
|
2018-08-09 20:31:26 +02:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "ita1024";
|
|
|
|
repo = "waf";
|
2019-08-15 14:41:18 +02:00
|
|
|
rev = "${pname}-${version}";
|
2020-02-02 19:41:47 +01:00
|
|
|
sha256 = "1ydmx20blr776qnmnqp0whyiy81a3glln49m9fva2cmampmandpb";
|
2016-02-10 20:34:05 +01:00
|
|
|
};
|
|
|
|
|
2018-08-09 20:31:26 +02:00
|
|
|
buildInputs = [ python ensureNewerSourcesForZipFilesHook ];
|
2016-02-10 20:34:05 +01:00
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
python waf-light configure
|
|
|
|
'';
|
|
|
|
buildPhase = ''
|
2019-06-17 16:23:52 +02:00
|
|
|
python waf-light build${wafToolsArg}
|
2016-02-10 20:34:05 +01:00
|
|
|
'';
|
|
|
|
installPhase = ''
|
2020-03-06 06:08:06 +01:00
|
|
|
install -D waf $out/bin/waf
|
2016-02-10 20:34:05 +01:00
|
|
|
'';
|
|
|
|
|
2016-06-27 06:56:50 +02:00
|
|
|
meta = with stdenv.lib; {
|
2016-02-10 20:34:05 +01:00
|
|
|
description = "Meta build system";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://waf.io";
|
2016-06-27 06:56:50 +02:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ vrthra ];
|
2016-02-10 20:34:05 +01:00
|
|
|
};
|
|
|
|
}
|