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

32 lines
665 B
Nix
Raw Normal View History

{ stdenv, fetchurl, python2 }:
2016-02-10 19:34:05 +00:00
stdenv.mkDerivation rec {
name = "waf-${version}";
version = "2.0.6";
2016-02-10 19:34:05 +00:00
src = fetchurl {
url = "https://waf.io/waf-${version}.tar.bz2";
sha256 = "1wyl0jl10i0p2rj49sig5riyppgkqlkqmbvv35d5bqxri3y4r38q";
2016-02-10 19:34:05 +00:00
};
buildInputs = [ python2 ];
configurePhase = ''
python waf-light configure
'';
buildPhase = ''
python waf-light build
'';
installPhase = ''
install waf $out
'';
2016-06-27 04:56:50 +00:00
meta = with stdenv.lib; {
2016-02-10 19:34:05 +00:00
description = "Meta build system";
homepage = "https://waf.io/";
2016-06-27 04:56:50 +00:00
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ vrthra ];
2016-02-10 19:34:05 +00:00
};
}