2019-07-09 15:17:19 +02:00
|
|
|
{ stdenv, lib, fetchurl }:
|
2014-02-17 15:24:43 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-09 15:17:19 +02:00
|
|
|
pname = "pax-utils";
|
2020-05-06 11:37:24 +02:00
|
|
|
version = "1.2.6";
|
2014-02-17 15:24:43 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-07-09 15:17:19 +02:00
|
|
|
url = "http://distfiles.gentoo.org/distfiles/${pname}-${version}.tar.xz";
|
2020-05-06 11:37:24 +02:00
|
|
|
sha256 = "08bzvgv1z3371sqf7zlm9i0b1y3wdymj2dqdvzvf192k3nix4hlp";
|
2014-02-17 15:24:43 +01:00
|
|
|
};
|
|
|
|
|
2017-03-22 02:13:39 +01:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2014-02-17 15:24:43 +01:00
|
|
|
|
2019-07-09 15:17:19 +02:00
|
|
|
meta = with lib; {
|
2017-03-22 02:13:39 +01: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.
|
|
|
|
'';
|
2019-07-09 15:17:19 +02:00
|
|
|
homepage = "https://wiki.gentoo.org/wiki/Hardened/PaX_Utilities";
|
2017-03-22 02:13:39 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix;
|
2016-11-20 22:28:46 +01:00
|
|
|
maintainers = with maintainers; [ thoughtpolice joachifm ];
|
2014-02-17 15:24:43 +01:00
|
|
|
};
|
|
|
|
}
|