add libraries for SELinux. Not that we're gonna use it...
svn path=/nixpkgs/trunk/; revision=6276
This commit is contained in:
parent
dfc8248073
commit
1730acf983
|
@ -0,0 +1,6 @@
|
|||
source $stdenv/setup
|
||||
|
||||
export DESTDIR=$out
|
||||
export PREFIX=$out
|
||||
|
||||
genericBuild
|
|
@ -0,0 +1,12 @@
|
|||
{stdenv, fetchurl, libsepol}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
builder = ./builder.sh;
|
||||
name = "libselinux-1.30";
|
||||
src = fetchurl {
|
||||
url = http://www.nsa.gov/selinux/archives/libselinux-1.30.tgz;
|
||||
md5 = "0b7d269c9b7d847059e4b11a710ab404";
|
||||
};
|
||||
|
||||
buildInputs = [libsepol];
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
source $stdenv/setup
|
||||
|
||||
export DESTDIR=$out
|
||||
export PREFIX=$out
|
||||
|
||||
genericBuild
|
|
@ -0,0 +1,10 @@
|
|||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
builder = ./builder.sh;
|
||||
name = "libsepol-1.12";
|
||||
src = fetchurl {
|
||||
url = http://www.nsa.gov/selinux/archives/libsepol-1.12.tgz;
|
||||
md5 = "937885f1fcbfe597a0f02aa9af044710";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue