3
0
Fork 0
forked from mirrors/nixpkgs

* Updated attr and acl.

svn path=/nixpkgs/branches/stdenv-updates/; revision=30892
This commit is contained in:
Eelco Dolstra 2011-12-14 14:43:43 +00:00
parent cfde88976b
commit 26046ace01
2 changed files with 6 additions and 6 deletions

View file

@ -1,14 +1,14 @@
{ stdenv, fetchurl, gettext, attr }:
stdenv.mkDerivation rec {
name = "acl-2.2.49";
name = "acl-2.2.51";
src = fetchurl {
url = "mirror://savannah/acl/${name}.src.tar.gz";
sha256 = "1mg5nxr0r9y08lmyxmm2lfss5jz1xzbs0npsc8597x2f5rsz9ixr";
sha256 = "09aj30m49ivycl3irram8c3givc0crivjm3ymw0nhfaxrwhlb186";
};
buildNativeInputs = [gettext];
buildNativeInputs = [ gettext ];
buildInputs = [ attr ];
# Upstream use C++-style comments in C code. Remove them.

View file

@ -1,14 +1,14 @@
{ stdenv, fetchurl, gettext }:
stdenv.mkDerivation rec {
name = "attr-2.4.44";
name = "attr-2.4.46";
src = fetchurl {
url = "mirror://savannah/attr/${name}.src.tar.gz";
sha256 = "16244r2vrd57i5fnf7dz3yi2mcckc47jr9y539jvljrzwnw18qlz";
sha256 = "07qf6kb2zk512az481bbnsk9jycn477xpva1a726n5pzlzf9pmnw";
};
buildNativeInputs = [gettext];
buildNativeInputs = [ gettext ];
configureFlags = "MAKE=make MSGFMT=msgfmt MSGMERGE=msgmerge XGETTEXT=xgettext ECHO=echo SED=sed AWK=gawk";