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

32 lines
670 B
Nix
Raw Normal View History

2016-02-10 20:34:05 +01:00
{ lib, stdenv, fetchurl, python2 }:
stdenv.mkDerivation rec {
name = "waf-${version}";
2016-06-27 06:56:50 +02:00
version = "1.9.0";
2016-02-10 20:34:05 +01:00
src = fetchurl {
url = "https://waf.io/waf-${version}.tar.bz2";
2016-06-27 06:56:50 +02:00
sha256 = "1sjpqzm2fzm8pxi3fwfinpsbw4z9040qkrzbg3lxik7ppsbjhn58";
2016-02-10 20:34:05 +01:00
};
buildInputs = [ python2 ];
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
};
}