Added acl package and fixed attr package.

svn path=/nixpkgs/trunk/; revision=9963
This commit is contained in:
Michael Raskin
2007-12-23 15:09:12 +00:00
parent cd2ba52040
commit 9849c4fd13
5 changed files with 264 additions and 6 deletions
@@ -0,0 +1,14 @@
args: with args;
stdenv.mkDerivation {
name = "acl-2.2.45";
builder = ./builder.sh;
src =
fetchurl {
url = ftp://oss.sgi.com/projects/xfs/cmd_tars/acl_2.2.45-1.tar.gz;
sha256 = "1bb2k5br494yk863w27k1h8gkdkq4kzakvajhj844hl1cixhhf1a";
};
buildInputs = [autoconf libtool gettext attr];
patches = [ ./acl-2.2.45-patch ];
}