1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-22 06:05:13 +00:00
nixpkgs/pkgs/development/tools/build-managers/waf/default.nix

34 lines
750 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitLab, python, ensureNewerSourcesForZipFilesHook }:
2016-02-10 19:34:05 +00:00
stdenv.mkDerivation rec {
name = "waf-${version}";
2018-12-05 23:37:43 +00:00
version = "2.0.13";
2016-02-10 19:34:05 +00:00
src = fetchFromGitLab {
owner = "ita1024";
repo = "waf";
rev = name;
2018-12-05 23:37:43 +00:00
sha256 = "1r4nyxpf07w98bx9zx0xii97rwsc27s6898xi9ph25p0n6hsdxxg";
2016-02-10 19:34:05 +00: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";
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
};
}