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

24 lines
577 B
Nix
Raw Normal View History

{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
name = "pax-utils-${version}";
2016-03-11 19:22:17 +00:00
version = "1.1.6";
src = fetchurl {
2016-03-11 21:36:22 +00:00
url = "https://dev.gentoo.org/~vapier/dist/${name}.tar.xz";
2016-03-11 19:22:17 +00:00
sha256 = "04hvsizzspfzfq6hhfif7ya9nwsc0cs6z6n2bq1zfh7agd8nqhzm";
};
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;
2015-10-05 09:17:56 +00:00
maintainers = with maintainers; [ thoughtpolice ];
};
}