2018-08-09 19:31:26 +01:00
|
|
|
{ stdenv, fetchFromGitLab, python, ensureNewerSourcesForZipFilesHook }:
|
2016-02-10 19:34:05 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "waf-${version}";
|
2018-08-09 19:31:26 +01:00
|
|
|
version = "2.0.10";
|
2016-02-10 19:34:05 +00:00
|
|
|
|
2018-08-09 19:31:26 +01:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "ita1024";
|
|
|
|
repo = "waf";
|
|
|
|
rev = name;
|
|
|
|
sha256 = "12p5myq72r5qg7wp2gwbnyvh6lzzcrwp9h3dw194x38g52m0prc7";
|
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 = ''
|
|
|
|
python waf-light build
|
|
|
|
'';
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|