mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
libsemanage: packaged
svn path=/nixpkgs/trunk/; revision=26541
This commit is contained in:
parent
836b0d259d
commit
f1201cf75f
25
pkgs/os-specific/linux/libsemanage/default.nix
Normal file
25
pkgs/os-specific/linux/libsemanage/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchurl, libsepol, libselinux, ustr, bzip2, bison, flex }:
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name = "libsemanage-${version}";
|
||||
version = "2.0.46";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://userspace.selinuxproject.org/releases/20101221/devel/${name}.tar.gz";
|
||||
sha256 = "03ljdw48pn8vlk4h26w8z247c9wykp2198s1ksmxrai3avyz87wf";
|
||||
};
|
||||
|
||||
NIX_LDFLAGS = "-lsepol";
|
||||
|
||||
makeFlags = "PREFIX=$(out) DESTDIR=$(out)";
|
||||
|
||||
buildInputs = [ libsepol libselinux ustr bzip2 bison flex ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://userspace.selinuxproject.org/;
|
||||
description = "Policy management tools for SELinux";
|
||||
license = licenses.lgpl21;
|
||||
maintainers = [ maintainers.phreedom ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -5211,6 +5211,8 @@ let
|
||||
|
||||
libselinux = callPackage ../os-specific/linux/libselinux { };
|
||||
|
||||
libsemanage = callPackage ../os-specific/linux/libsemanage { };
|
||||
|
||||
libraw1394 = callPackage ../development/libraries/libraw1394 { };
|
||||
|
||||
libsexy = callPackage ../development/libraries/libsexy { };
|
||||
|
Loading…
Reference in New Issue
Block a user