mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
4631a65c43
Signed-off-by: Austin Seipp <aseipp@pobox.com>
24 lines
615 B
Nix
24 lines
615 B
Nix
{ fetchurl, stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pax-utils-${version}";
|
|
version = "0.7";
|
|
|
|
src = fetchurl {
|
|
url = "http://dev.gentoo.org/~vapier/dist/${name}-${version}.tar.xz";
|
|
sha256 = "111vmwn0ikrmy3s0w3rzpbzwrphawljrmcjya0isg5yam7lwxi0s";
|
|
};
|
|
|
|
makeFlags = [
|
|
"DESTDIR=$(out)"
|
|
"PREFIX=$(out)"
|
|
];
|
|
|
|
meta = {
|
|
description = "A suite of tools for PaX/grsecurity";
|
|
homepage = "http://dev.gentoo.org/~vapier/dist/";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
|
};
|
|
}
|