2010-08-23 11:29:39 -07:00
|
|
|
{ stdenv, fetchurl, gettext, attr }:
|
2007-12-23 07:09:12 -08:00
|
|
|
|
2010-05-03 07:41:04 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2013-06-29 07:16:53 -07:00
|
|
|
name = "acl-2.2.52";
|
2008-05-19 06:39:28 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-05-03 07:41:04 -07:00
|
|
|
url = "mirror://savannah/acl/${name}.src.tar.gz";
|
2013-06-29 07:16:53 -07:00
|
|
|
sha256 = "08qd9s3wfhv0ajswsylnfwr5h0d7j9d4rgip855nrh400nxp940p";
|
2008-05-19 06:39:28 -07:00
|
|
|
};
|
2009-02-06 01:52:27 -08:00
|
|
|
|
2012-12-28 10:20:09 -08:00
|
|
|
nativeBuildInputs = [ gettext ];
|
2010-08-23 11:29:39 -07:00
|
|
|
buildInputs = [ attr ];
|
2008-05-19 06:39:28 -07:00
|
|
|
|
2010-05-03 08:47:58 -07: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 11:29:39 -07:00
|
|
|
configureFlags = "MAKE=make MSGFMT=msgfmt MSGMERGE=msgmerge XGETTEXT=xgettext ZIP=gzip ECHO=echo SED=sed AWK=gawk";
|
2008-05-19 06:39:28 -07:00
|
|
|
|
|
|
|
installTargets = "install install-lib install-dev";
|
2009-03-30 08:55:10 -07:00
|
|
|
|
|
|
|
meta = {
|
2010-05-03 07:41:04 -07:00
|
|
|
homepage = http://savannah.nongnu.org/projects/acl;
|
2009-03-30 08:55:10 -07:00
|
|
|
description = "Library and tools for manipulating access control lists";
|
2016-02-02 17:57:06 -08:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-03-30 08:55:10 -07:00
|
|
|
};
|
2007-12-23 07:09:12 -08:00
|
|
|
}
|