at v206 24 lines 596 B view raw
1{ fetchurl, stdenv }: 2 3stdenv.mkDerivation rec { 4 name = "pax-utils-${version}"; 5 version = "1.1.1"; 6 7 src = fetchurl { 8 url = "http://dev.gentoo.org/~vapier/dist/${name}.tar.xz"; 9 sha256 = "0gldvyr96jgbcahq7rl3k4krzyhvlz95ckiqh3yhink56s5z58cy"; 10 }; 11 12 makeFlags = [ 13 "DESTDIR=$(out)" 14 "PREFIX=$(out)" 15 ]; 16 17 meta = with stdenv.lib; { 18 description = "A suite of tools for PaX/grsecurity"; 19 homepage = "http://dev.gentoo.org/~vapier/dist/"; 20 license = licenses.gpl2; 21 platforms = platforms.linux; 22 maintainers = with maintainers; [ thoughtpolice ]; 23 }; 24}