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

24 lines
637 B
Nix
Raw Normal View History

{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
name = "pax-utils-${version}";
version = "1.2.2";
src = fetchurl {
2016-03-11 22:36:22 +01:00
url = "https://dev.gentoo.org/~vapier/dist/${name}.tar.xz";
sha512 = "26f7lqr1s2iywj8qfbf24sm18bl6f7cwsf77nxwwvgij1z88gvh6yx3gp65zap92l0xjdp8kwq9y96xld39p86zd9dmkm447czykbvb";
};
makeFlags = [
"PREFIX=$(out)"
];
meta = with stdenv.lib; {
description = "A suite of tools for PaX/grsecurity";
2016-03-11 22:36:22 +01:00
homepage = "https://dev.gentoo.org/~vapier/dist/";
license = licenses.gpl2;
platforms = platforms.linux;
2016-11-20 22:28:46 +01:00
maintainers = with maintainers; [ thoughtpolice joachifm ];
};
}