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