add libraries for SELinux. Not that we're gonna use it...

svn path=/nixpkgs/trunk/; revision=6276
This commit is contained in:
Armijn Hemel 2006-08-27 18:05:18 +00:00
parent dfc8248073
commit 1730acf983
4 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,6 @@
source $stdenv/setup
export DESTDIR=$out
export PREFIX=$out
genericBuild

View File

@ -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];
}

View File

@ -0,0 +1,6 @@
source $stdenv/setup
export DESTDIR=$out
export PREFIX=$out
genericBuild

View File

@ -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";
};
}