gyp: svn-1977 -> 2015-05-17

This commit is contained in:
codyopel 2015-05-21 05:06:54 -04:00
parent 8d7d9723af
commit a305e6855d

View file

@ -5811,23 +5811,25 @@ let
}; };
gyp = buildPythonPackage rec { gyp = buildPythonPackage rec {
rev = "1977"; name = "gyp-${version}";
name = "gyp-r${rev}"; version = "2015-05-15";
src = pkgs.fetchsvn { src = pkgs.fetchgit {
url = "http://gyp.googlecode.com/svn/trunk"; url = "https://chromium.googlesource.com/external/gyp.git";
inherit rev; rev = "9f594095c5b14f8bc518081a660e77890c294861";
sha256 = "0vnr75yd3bidysiwl9lljvf1dv6v9m9xqdnx0hdgyl92w689n9j8"; sha256 = "1xqi44alnw9c31jg2hz7flz5nabq003b4jyin12h3s9zl82y6vd5";
}; };
patches = optionals pkgs.stdenv.isDarwin [ patches = optionals pkgs.stdenv.isDarwin [
../development/python-modules/gyp/no-darwin-cflags.patch ../development/python-modules/gyp/no-darwin-cflags.patch
]; ];
meta = { meta = with stdenv.lib; {
homepage = http://code.google.com/p/gyp; description = "A tool to generate native build files";
license = stdenv.lib.licenses.bsd3; homepage = https://chromium.googlesource.com/external/gyp/+/master/README.md;
description = "Generate Your Projects"; license = licenses.bsd3;
maintainers = with maintainers; [ codyopel ];
platforms = platforms.all;
}; };
}; };