libsepol: version bump

svn path=/nixpkgs/trunk/; revision=26535
This commit is contained in:
Evgeny Egorochkin 2011-03-27 04:45:26 +00:00
parent 3822bde42e
commit b0d3a2f38c
1 changed files with 8 additions and 5 deletions

View File

@ -1,10 +1,13 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
builder = ./builder.sh;
name = "libsepol-1.12";
stdenv.mkDerivation rec {
name = "libsepol-${version}";
version = "2.0.42";
src = fetchurl {
url = http://www.nsa.gov/selinux/archives/libsepol-1.12.tgz;
md5 = "937885f1fcbfe597a0f02aa9af044710";
url = "http://userspace.selinuxproject.org/releases/20101221/devel/${name}.tar.gz";
sha256 = "0sg61mb9qhyh4vplasar6nwd6j123v453zss93qws3h95fhrfc08";
};
preBuild = '' makeFlags="$makeFlags PREFIX=$out DESTDIR=$out" '';
}