policycoreutils: packaged
svn path=/nixpkgs/trunk/; revision=26542
This commit is contained in:
parent
f1201cf75f
commit
1c9c082d00
23
pkgs/os-specific/linux/policycoreutils/default.nix
Normal file
23
pkgs/os-specific/linux/policycoreutils/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv, fetchurl, libsepol, libselinux }:
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
|
name = "policycoreutils-${version}";
|
||||||
|
version = "2.0.85";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://userspace.selinuxproject.org/releases/20101221/devel/policycoreutils-2.0.85.tar.gz;
|
||||||
|
sha256 = "01q5ifacg24k9jdz85j9m17ps2l1p7abvh8pzy6qz55y68rycifb";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libsepol libselinux ];
|
||||||
|
|
||||||
|
makeFlags = "LOCALEDIR=$(out)/share/locale";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://userspace.selinuxproject.org/;
|
||||||
|
description = "SELinux policy core utilities";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = [ maintainers.phreedom ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -5329,6 +5329,8 @@ let
|
|||||||
|
|
||||||
pmutils = callPackage ../os-specific/linux/pm-utils { };
|
pmutils = callPackage ../os-specific/linux/pm-utils { };
|
||||||
|
|
||||||
|
policycoreutils = callPackage ../os-specific/linux/policycoreutils { };
|
||||||
|
|
||||||
powertop = callPackage ../os-specific/linux/powertop { };
|
powertop = callPackage ../os-specific/linux/powertop { };
|
||||||
|
|
||||||
procps = callPackage ../os-specific/linux/procps { };
|
procps = callPackage ../os-specific/linux/procps { };
|
||||||
|
Loading…
Reference in New Issue
Block a user