libselinux: 3.3 -> 3.6
This commit is contained in:
parent
f5e5c08eb3
commit
7dcc6adc5d
1 changed files with 13 additions and 6 deletions
|
@ -1,5 +1,6 @@
|
|||
{ lib, stdenv, fetchurl, fetchpatch, buildPackages, pcre, pkg-config, libsepol
|
||||
, enablePython ? !stdenv.hostPlatform.isStatic, swig ? null, python3 ? null
|
||||
{ lib, stdenv, fetchurl, fetchpatch, buildPackages, pcre2, pkg-config, libsepol
|
||||
, enablePython ? !stdenv.hostPlatform.isStatic
|
||||
, swig ? null, python3 ? null, python3Packages
|
||||
, fts
|
||||
}:
|
||||
|
||||
|
@ -9,14 +10,14 @@ with lib;
|
|||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libselinux";
|
||||
version = "3.3";
|
||||
version = "3.6";
|
||||
inherit (libsepol) se_url;
|
||||
|
||||
outputs = [ "bin" "out" "dev" "man" ] ++ optional enablePython "py";
|
||||
|
||||
src = fetchurl {
|
||||
url = "${se_url}/${version}/libselinux-${version}.tar.gz";
|
||||
sha256 = "0mvh793g7fg6wb6zqhkdyrv80x6k84ypqwi8ii89c91xcckyxzdc";
|
||||
hash = "sha256-uk4O80snDnZypeXxtSP+K+qzpAuzPZOJ9K06hyjyG1I=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
|
@ -40,8 +41,13 @@ stdenv.mkDerivation rec {
|
|||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ pkg-config python3 ] ++ optionals enablePython [ swig ];
|
||||
buildInputs = [ libsepol pcre fts ] ++ optionals enablePython [ python3 ];
|
||||
nativeBuildInputs = [ pkg-config python3 ] ++ optionals enablePython [
|
||||
python3Packages.pip
|
||||
python3Packages.setuptools
|
||||
python3Packages.wheel
|
||||
swig
|
||||
];
|
||||
buildInputs = [ libsepol pcre2 fts ] ++ optionals enablePython [ python3 ];
|
||||
|
||||
# drop fortify here since package uses it by default, leading to compile error:
|
||||
# command-line>:0:0: error: "_FORTIFY_SOURCE" redefined [-Werror]
|
||||
|
@ -68,6 +74,7 @@ stdenv.mkDerivation rec {
|
|||
] ++ optionals enablePython [
|
||||
"PYTHON=${python3.pythonOnBuildForHost.interpreter}"
|
||||
"PYTHONLIBDIR=$(py)/${python3.sitePackages}"
|
||||
"PYTHON_SETUP_ARGS=--no-build-isolation"
|
||||
];
|
||||
|
||||
postPatch = lib.optionalString stdenv.hostPlatform.isMusl ''
|
||||
|
|
Loading…
Reference in a new issue