2014-02-17 15:24:43 +01:00
|
|
|
{ fetchurl, stdenv }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "pax-utils-${version}";
|
|
|
|
version = "0.7";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2014-02-22 19:24:31 +01:00
|
|
|
url = "http://dev.gentoo.org/~vapier/dist/${name}.tar.xz";
|
2014-02-17 15:24:43 +01:00
|
|
|
sha256 = "111vmwn0ikrmy3s0w3rzpbzwrphawljrmcjya0isg5yam7lwxi0s";
|
|
|
|
};
|
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"DESTDIR=$(out)"
|
|
|
|
"PREFIX=$(out)"
|
|
|
|
];
|
|
|
|
|
2014-02-22 20:11:33 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-02-17 15:24:43 +01:00
|
|
|
description = "A suite of tools for PaX/grsecurity";
|
|
|
|
homepage = "http://dev.gentoo.org/~vapier/dist/";
|
2014-02-22 20:11:33 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ thoughtpolice wizeman ];
|
2014-02-17 15:24:43 +01:00
|
|
|
};
|
|
|
|
}
|