2014-02-17 14:24:43 +00:00
|
|
|
{ fetchurl, stdenv }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "pax-utils-${version}";
|
2016-03-11 19:22:17 +00:00
|
|
|
version = "1.1.6";
|
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-03-11 19:22:17 +00:00
|
|
|
sha256 = "04hvsizzspfzfq6hhfif7ya9nwsc0cs6z6n2bq1zfh7agd8nqhzm";
|
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;
|
2015-10-05 10:17:56 +01:00
|
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
2014-02-17 14:24:43 +00:00
|
|
|
};
|
|
|
|
}
|