2017-03-22 01:13:39 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2014-02-17 14:24:43 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "pax-utils-${version}";
|
2017-02-15 04:36:03 +00:00
|
|
|
version = "1.2.2";
|
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";
|
2017-02-15 04:36:03 +00:00
|
|
|
sha512 = "26f7lqr1s2iywj8qfbf24sm18bl6f7cwsf77nxwwvgij1z88gvh6yx3gp65zap92l0xjdp8kwq9y96xld39p86zd9dmkm447czykbvb";
|
2014-02-17 14:24:43 +00:00
|
|
|
};
|
|
|
|
|
2017-03-22 01:13:39 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2014-02-17 14:24:43 +00:00
|
|
|
|
2014-02-22 19:11:33 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-03-22 01:13:39 +00:00
|
|
|
description = "ELF utils that can check files for security relevant properties";
|
|
|
|
longDescription = ''
|
|
|
|
A suite of ELF tools to aid auditing systems. Contains
|
|
|
|
various ELF related utils for ELF32, ELF64 binaries useful
|
|
|
|
for displaying PaX and security info on a large groups of
|
|
|
|
binary files.
|
|
|
|
'';
|
|
|
|
homepage = https://wiki.gentoo.org/wiki/Hardened/PaX_Utilities;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix;
|
2016-11-20 21:28:46 +00:00
|
|
|
maintainers = with maintainers; [ thoughtpolice joachifm ];
|
2014-02-17 14:24:43 +00:00
|
|
|
};
|
|
|
|
}
|