nixpkgs/pkgs/os-specific/linux/pax-utils/default.nix

25 lines
604 B
Nix
Raw Normal View History

{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
name = "pax-utils-${version}";
version = "1.0.3";
src = fetchurl {
2014-02-22 18:24:31 +00:00
url = "http://dev.gentoo.org/~vapier/dist/${name}.tar.xz";
sha256 = "0w2nddgany3s0znyj6zizlvn8y5vba9x49jm5nliv13p3x7ajdc5";
};
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 ];
};
}