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

25 lines
604 B
Nix
Raw Normal View History

{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
name = "pax-utils-${version}";
2014-11-20 19:54:27 +01:00
version = "0.9.2";
src = fetchurl {
2014-02-22 19:24:31 +01:00
url = "http://dev.gentoo.org/~vapier/dist/${name}.tar.xz";
2014-11-20 19:54:27 +01:00
sha256 = "1pmlpjhr2475h5v90abmsfgr37r3b6c4mknhzswbgcb10vgh322p";
};
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 ];
};
}