waf: 1.8.19 -> 1.9.0

This commit is contained in:
Rahul Gopinath 2016-06-26 21:56:50 -07:00
parent cae58e3d26
commit 021dd6a5f6

View file

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "waf-${version}";
version = "1.8.19";
version = "1.9.0";
src = fetchurl {
url = "https://waf.io/waf-${version}.tar.bz2";
sha256 = "e5df90556d1f70aca82bb5c5f46aa68d2377bae16b0db044eaa0559df8668c6f";
sha256 = "1sjpqzm2fzm8pxi3fwfinpsbw4z9040qkrzbg3lxik7ppsbjhn58";
};
buildInputs = [ python2 ];
@ -21,11 +21,11 @@ stdenv.mkDerivation rec {
install waf $out
'';
meta = {
meta = with stdenv.lib; {
description = "Meta build system";
homepage = "https://waf.io/";
license = lib.licenses.bsd3;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ ];
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ vrthra ];
};
}