forked from mirrors/nixpkgs
grsecurity: add pax-utils-0.7
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
c2e4ccd4ad
commit
4631a65c43
24
pkgs/os-specific/linux/pax-utils/default.nix
Normal file
24
pkgs/os-specific/linux/pax-utils/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -6988,6 +6988,8 @@ let
|
|||
|
||||
paxctl = callPackage ../os-specific/linux/paxctl { };
|
||||
|
||||
pax-utils = callPackage ../os-specific/linux/pax-utils { };
|
||||
|
||||
pcmciaUtils = callPackage ../os-specific/linux/pcmciautils {
|
||||
firmware = config.pcmciaUtils.firmware or [];
|
||||
config = config.pcmciaUtils.config or null;
|
||||
|
|
Loading…
Reference in a new issue