0d64423f60
exists. There is a newer version on the server, but it cannot be downloaded, apparently because of misconfigured permissions. svn path=/nixpkgs/trunk/; revision=13996
19 lines
617 B
Nix
19 lines
617 B
Nix
{stdenv, fetchurl, gettext, attr, libtool}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "acl-2.2.47";
|
|
|
|
src = fetchurl {
|
|
# The file cannot be downloaded from sgi.com.
|
|
#url = ftp://oss.sgi.com/projects/xfs/cmd_tars/acl_2.2.47-1.tar.gz;
|
|
url = "http://gentoo.chem.wisc.edu/gentoo/distfiles/acl_2.2.47-1.tar.gz";
|
|
sha256 = "1j39g62fki0iyji9s62slgwdfskpkqy7rmjlqcnmsvsnxbxhc294";
|
|
};
|
|
|
|
buildInputs = [gettext attr libtool];
|
|
|
|
configureFlags = "MAKE=make LIBTOOL=libtool MSGFMT=msgfmt MSGMERGE=msgmerge XGETTEXT=xgettext ZIP=gzip ECHO=echo SED=sed AWK=gawk";
|
|
|
|
installTargets = "install install-lib install-dev";
|
|
}
|