mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
libbpf: fixup build after the last staging iteration
... and add myself into meta.maintainers :-)
This commit is contained in:
parent
fed923247a
commit
2c145f4588
1 changed files with 4 additions and 1 deletions
|
@ -25,6 +25,9 @@ stdenv.mkDerivation rec {
|
|||
patchPhase = ''
|
||||
substituteInPlace ../scripts/check-reallocarray.sh \
|
||||
--replace '/bin/rm' 'rm'
|
||||
# Without patching this the config-test program will be refused by our CC wrapper.
|
||||
chmod +w ../scripts
|
||||
sed -e '2a NIX_ENFORCE_PURITY=0' -i ../scripts/check-reallocarray.sh
|
||||
'';
|
||||
|
||||
# FIXME: Multi-output requires some fixes to the way the pkgconfig file is
|
||||
|
@ -37,7 +40,7 @@ stdenv.mkDerivation rec {
|
|||
description = "Upstream mirror of libbpf";
|
||||
homepage = "https://github.com/libbpf/libbpf";
|
||||
license = with licenses; [ lgpl21 /* or */ bsd2 ];
|
||||
maintainers = with maintainers; [ thoughtpolice ];
|
||||
maintainers = with maintainers; [ thoughtpolice vcunat ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue