2010-08-23 20:29:39 +02:00
|
|
|
{ stdenv, fetchurl, gettext, attr }:
|
2007-12-23 16:09:12 +01:00
|
|
|
|
2010-05-03 16:41:04 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "acl-2.2.49";
|
2008-05-19 15:39:28 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-05-03 16:41:04 +02:00
|
|
|
url = "mirror://savannah/acl/${name}.src.tar.gz";
|
|
|
|
sha256 = "1mg5nxr0r9y08lmyxmm2lfss5jz1xzbs0npsc8597x2f5rsz9ixr";
|
2008-05-19 15:39:28 +02:00
|
|
|
};
|
2009-02-06 10:52:27 +01:00
|
|
|
|
2010-03-09 19:05:38 +01:00
|
|
|
buildNativeInputs = [gettext];
|
2010-08-23 20:29:39 +02:00
|
|
|
buildInputs = [ attr ];
|
2008-05-19 15:39:28 +02:00
|
|
|
|
2010-05-03 17:47:58 +02:00
|
|
|
# Upstream use C++-style comments in C code. Remove them.
|
|
|
|
# This comment breaks compilation if too strict gcc flags are used.
|
|
|
|
patchPhase = ''
|
|
|
|
echo "Removing C++-style comments from include/acl.h"
|
|
|
|
sed -e '/^\/\//d' -i include/acl.h
|
|
|
|
'';
|
|
|
|
|
2010-08-23 20:29:39 +02:00
|
|
|
configureFlags = "MAKE=make MSGFMT=msgfmt MSGMERGE=msgmerge XGETTEXT=xgettext ZIP=gzip ECHO=echo SED=sed AWK=gawk";
|
2008-05-19 15:39:28 +02:00
|
|
|
|
|
|
|
installTargets = "install install-lib install-dev";
|
2009-03-30 17:55:10 +02:00
|
|
|
|
|
|
|
meta = {
|
2010-05-03 16:41:04 +02:00
|
|
|
homepage = http://savannah.nongnu.org/projects/acl;
|
2009-03-30 17:55:10 +02:00
|
|
|
description = "Library and tools for manipulating access control lists";
|
|
|
|
};
|
2007-12-23 16:09:12 +01:00
|
|
|
}
|