d0677e6d45
This adds a warning to the top of each “boot” package that reads: Note: this package is used for bootstrapping fetchurl, and thus cannot use fetchpatch! All mutable patches (generated by GitHub or cgit) that are needed here should be included directly in Nixpkgs as files. This makes it clear to maintainer that they may need to treat this package a little differently than others. Importantly, we can’t use fetchpatch here due to using <nix/fetchurl.nix>. To avoid having stale hashes, we need to include patches that are subject to changing overtime (for instance, gitweb’s patches contain a version number at the bottom).
37 lines
1.0 KiB
Nix
37 lines
1.0 KiB
Nix
{ stdenv, fetchurl, gettext, attr }:
|
|
|
|
# Note: this package is used for bootstrapping fetchurl, and thus
|
|
# cannot use fetchpatch! All mutable patches (generated by GitHub or
|
|
# cgit) that are needed here should be included directly in Nixpkgs as
|
|
# files.
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "acl-2.2.53";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/acl/${name}.tar.gz";
|
|
sha256 = "1ir6my3w74s6nfbgbqgzj6w570sn0qjf3524zx8xh67lqrjrigh6";
|
|
};
|
|
|
|
outputs = [ "bin" "dev" "out" "man" "doc" ];
|
|
|
|
nativeBuildInputs = [ gettext ];
|
|
buildInputs = [ attr ];
|
|
|
|
# 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
|
|
|
|
patchShebangs .
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://savannah.nongnu.org/projects/acl";
|
|
description = "Library and tools for manipulating access control lists";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2Plus;
|
|
};
|
|
}
|