{ fetchurl, stdenv }: stdenv.mkDerivation rec { name = "pax-utils-${version}"; version = "1.0"; src = fetchurl { url = "http://dev.gentoo.org/~vapier/dist/${name}.tar.xz"; sha256 = "04p356j46symayh2d14i51xv9qic3iz9gnc7fr906skw3hccr7y3"; }; makeFlags = [ "DESTDIR=$(out)" "PREFIX=$(out)" ]; meta = with stdenv.lib; { description = "A suite of tools for PaX/grsecurity"; homepage = "http://dev.gentoo.org/~vapier/dist/"; license = licenses.gpl2; platforms = platforms.linux; maintainers = with maintainers; [ thoughtpolice wizeman ]; }; }