2019-06-17 15:23:52 +01:00
|
|
|
{ stdenv, fetchFromGitLab, fetchpatch, 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 {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "waf";
|
2019-09-06 05:22:45 +01:00
|
|
|
version = "2.0.18";
|
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}";
|
2019-09-06 05:22:45 +01:00
|
|
|
sha256 = "1ifcanm2x2i8qwgfkwgdxwaqcdwsx5jg8bd1d6sqjps3pz7s5qxx";
|
2016-02-10 19:34:05 +00:00
|
|
|
};
|
|
|
|
|
2019-04-22 13:44:53 +01:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://gitlab.com/grahamc/waf/commit/fc1c98f1fb575fb26b867a61cbca79aa894db2ea.patch";
|
|
|
|
sha256 = "0kzfrr6nh1ay8nyk0i69nhkkrq7hskn7yw1qyjxrda1y3wxj6jp8";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
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 = ''
|
|
|
|
install waf $out
|
|
|
|
'';
|
|
|
|
|
2016-06-27 05:56:50 +01:00
|
|
|
meta = with stdenv.lib; {
|
2016-02-10 19:34:05 +00:00
|
|
|
description = "Meta build system";
|
2018-08-09 19:31:26 +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
|
|
|
};
|
|
|
|
}
|