libsepol: fix static build

launchpad/nixpkgs/master
Guillaume Girol 3 years ago
parent e3ad419b87
commit b7a9718783
  1. 5
      pkgs/os-specific/linux/libsepol/default.nix

@ -13,6 +13,11 @@ stdenv.mkDerivation rec {
sha256 = "0ygb6dh5lng91xs6xiqf5v0nxa68qmjc787p0s5h9w89364f2yjv";
};
postPatch = lib.optionalString stdenv.hostPlatform.isStatic ''
substituteInPlace src/Makefile --replace 'all: $(LIBA) $(LIBSO)' 'all: $(LIBA)'
sed -i $'/^\t.*LIBSO/d' src/Makefile
'';
nativeBuildInputs = [ flex ];
makeFlags = [

Loading…
Cancel
Save