nixpkgs/pkgs/os-specific/linux/pax-utils/default.nix
2014-03-21 16:14:17 +01:00

25 lines
604 B
Nix

{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
name = "pax-utils-${version}";
version = "0.8.1";
src = fetchurl {
url = "http://dev.gentoo.org/~vapier/dist/${name}.tar.xz";
sha256 = "1fgm70s52x48dxjihs0rcwmpfsi2dxbjzcilxy9fzg0i39dz4kw4";
};
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 ];
};
}