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

24 lines
586 B
Nix
Raw Normal View History

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