2014-02-17 14:24:43 +00:00
|
|
|
{ fetchurl, stdenv }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "pax-utils-${version}";
|
2016-11-20 21:28:46 +00:00
|
|
|
version = "1.1.7";
|
2014-02-17 14:24:43 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-03-11 21:36:22 +00:00
|
|
|
url = "https://dev.gentoo.org/~vapier/dist/${name}.tar.xz";
|
2016-11-20 21:28:46 +00:00
|
|
|
sha256 = "045dxgl4kkmq6205iw6fqyx3565gd607p3xpad5l9scdi3qdp6xv";
|
2014-02-17 14:24:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"PREFIX=$(out)"
|
|
|
|
];
|
|
|
|
|
2014-02-22 19:11:33 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-02-17 14:24:43 +00:00
|
|
|
description = "A suite of tools for PaX/grsecurity";
|
2016-03-11 21:36:22 +00:00
|
|
|
homepage = "https://dev.gentoo.org/~vapier/dist/";
|
2014-02-22 19:11:33 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2016-11-20 21:28:46 +00:00
|
|
|
maintainers = with maintainers; [ thoughtpolice joachifm ];
|
2014-02-17 14:24:43 +00:00
|
|
|
};
|
|
|
|
}
|