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