nixpkgs/pkgs/os-specific/linux/semodule-utils/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
624 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libsepol }:
2018-09-04 07:35:58 +00:00
stdenv.mkDerivation rec {
pname = "semodule-utils";
2023-02-25 02:44:59 +00:00
version = "3.5";
2018-09-04 07:35:58 +00:00
inherit (libsepol) se_url;
2018-09-04 07:35:58 +00:00
src = fetchurl {
url = "${se_url}/${version}/${pname}-${version}.tar.gz";
2023-02-25 02:44:59 +00:00
sha256 = "sha256-yaVQpzcFHrrywQL2ZcfsL4XnIyhwmAqgBnmYRZtBQoM=";
2018-09-04 07:35:58 +00:00
};
buildInputs = [ libsepol ];
makeFlags = [
"PREFIX=$(out)"
2021-01-15 14:45:37 +00:00
"LIBSEPOLA=${lib.getLib libsepol}/lib/libsepol.a"
2018-09-04 07:35:58 +00:00
];
meta = with lib; {
2018-09-04 07:35:58 +00:00
description = "SELinux policy core utilities (packaging additions)";
license = licenses.gpl2;
inherit (libsepol.meta) homepage platforms;
maintainers = [ ];
2018-09-04 07:35:58 +00:00
};
}