at 18.03-beta 27 lines 905 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "pax-utils-${version}"; 5 version = "1.2.2"; 6 7 src = fetchurl { 8 url = "https://dev.gentoo.org/~vapier/dist/${name}.tar.xz"; 9 sha512 = "26f7lqr1s2iywj8qfbf24sm18bl6f7cwsf77nxwwvgij1z88gvh6yx3gp65zap92l0xjdp8kwq9y96xld39p86zd9dmkm447czykbvb"; 10 }; 11 12 makeFlags = [ "PREFIX=$(out)" ]; 13 14 meta = with stdenv.lib; { 15 description = "ELF utils that can check files for security relevant properties"; 16 longDescription = '' 17 A suite of ELF tools to aid auditing systems. Contains 18 various ELF related utils for ELF32, ELF64 binaries useful 19 for displaying PaX and security info on a large groups of 20 binary files. 21 ''; 22 homepage = https://wiki.gentoo.org/wiki/Hardened/PaX_Utilities; 23 license = licenses.gpl2; 24 platforms = platforms.unix; 25 maintainers = with maintainers; [ thoughtpolice joachifm ]; 26 }; 27}