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

41 lines
978 B
Nix
Raw Normal View History

2019-04-22 14:44:53 +02:00
{ stdenv, fetchFromGitLab, fetchpatch, python, ensureNewerSourcesForZipFilesHook }:
2016-02-10 20:34:05 +01:00
stdenv.mkDerivation rec {
name = "waf-${version}";
2019-02-09 02:47:20 +01:00
version = "2.0.14";
2016-02-10 20:34:05 +01:00
src = fetchFromGitLab {
owner = "ita1024";
repo = "waf";
rev = name;
2019-02-09 02:47:20 +01:00
sha256 = "006a4wb9i569pahs8ji86hrv58g2hm8xikgchnll3bdqgxllhnrs";
2016-02-10 20:34:05 +01:00
};
2019-04-22 14:44:53 +02:00
patches = [
(fetchpatch {
url = "https://gitlab.com/grahamc/waf/commit/fc1c98f1fb575fb26b867a61cbca79aa894db2ea.patch";
sha256 = "0kzfrr6nh1ay8nyk0i69nhkkrq7hskn7yw1qyjxrda1y3wxj6jp8";
})
];
buildInputs = [ python ensureNewerSourcesForZipFilesHook ];
2016-02-10 20:34:05 +01:00
configurePhase = ''
python waf-light configure
'';
buildPhase = ''
python waf-light build
'';
installPhase = ''
install waf $out
'';
2016-06-27 06:56:50 +02:00
meta = with stdenv.lib; {
2016-02-10 20:34:05 +01:00
description = "Meta build system";
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
};
}