nixpkgs/pkgs/tools/security/nsjail/default.nix

39 lines
1.2 KiB
Nix
Raw Normal View History

2018-10-10 21:33:43 +00:00
{ stdenv, fetchFromGitHub, autoconf, bison, flex, libtool, pkgconfig, which
, libnl, protobuf, protobufc, shadow
}:
2015-08-10 17:34:09 +00:00
stdenv.mkDerivation rec {
pname = "nsjail";
2020-07-23 15:49:56 +00:00
version = "3.0";
2015-08-10 17:34:09 +00:00
2017-10-21 22:13:11 +00:00
src = fetchFromGitHub {
owner = "google";
repo = "nsjail";
rev = version;
fetchSubmodules = true;
2020-07-23 15:49:56 +00:00
sha256 = "1w6x8xcrs0i1y3q41gyq8z3cq9x24qablklc4jiydf855lhqn4dh";
2015-08-10 17:34:09 +00:00
};
2018-10-10 21:33:43 +00:00
nativeBuildInputs = [ autoconf bison flex libtool pkgconfig which ];
buildInputs = [ libnl protobuf protobufc ];
enableParallelBuilding = true;
2017-10-21 22:13:11 +00:00
2020-07-23 15:49:56 +00:00
preBuild = ''
makeFlagsArray+=(USER_DEFINES='-DNEWUIDMAP_PATH=${shadow}/bin/newuidmap -DNEWGIDMAP_PATH=${shadow}/bin/newgidmap')
'';
2015-08-10 17:34:09 +00:00
installPhase = ''
mkdir -p $out/bin $out/share/man/man1
install nsjail $out/bin/
install nsjail.1 $out/share/man/man1/
2015-08-10 17:34:09 +00:00
'';
2017-10-21 22:13:11 +00:00
meta = with stdenv.lib; {
description = "A light-weight process isolation tool, making use of Linux namespaces and seccomp-bpf syscall filters";
homepage = "http://nsjail.com/";
license = licenses.asl20;
2020-07-23 15:49:56 +00:00
maintainers = with maintainers; [ arturcygan bosu c0bw3b ];
2017-10-21 22:13:11 +00:00
platforms = platforms.linux;
2015-08-10 17:34:09 +00:00
};
}