2013-02-24 12:25:53 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2006-08-27 19:05:18 +01:00
|
|
|
|
2011-03-27 05:45:26 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libsepol-${version}";
|
2014-08-14 16:55:12 +01:00
|
|
|
version = "2.3";
|
|
|
|
se_release = "20140506";
|
2014-12-14 18:05:19 +00:00
|
|
|
se_url = "https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases";
|
2011-03-27 05:45:26 +01:00
|
|
|
|
2006-08-27 19:05:18 +01:00
|
|
|
src = fetchurl {
|
2013-02-24 12:25:53 +00:00
|
|
|
url = "${se_url}/${se_release}/libsepol-${version}.tar.gz";
|
2014-08-14 16:55:12 +01:00
|
|
|
sha256 = "13z6xakc2qqyhlvnc5h53jy7lqmh5b5cnpfn51lmvfdpqd18d3fc";
|
2006-08-27 19:05:18 +01:00
|
|
|
};
|
2011-03-27 05:45:26 +01:00
|
|
|
|
|
|
|
preBuild = '' makeFlags="$makeFlags PREFIX=$out DESTDIR=$out" '';
|
2013-02-24 12:25:53 +00:00
|
|
|
|
2013-11-28 08:58:06 +00:00
|
|
|
# TODO: Figure out why the build incorrectly links libsepol.so
|
|
|
|
postInstall = ''
|
|
|
|
rm $out/lib/libsepol.so
|
|
|
|
ln -s libsepol.so.1 $out/lib/libsepol.so
|
|
|
|
'';
|
|
|
|
|
2014-01-09 20:44:21 +00:00
|
|
|
passthru = { inherit se_release se_url; };
|
2013-02-24 12:25:53 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://userspace.selinuxproject.org;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.phreedom ];
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2013-02-24 12:25:53 +00:00
|
|
|
};
|
2006-08-27 19:05:18 +01:00
|
|
|
}
|