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

44 lines
1.3 KiB
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchFromGitHub, autoconf, bison, flex, libtool, pkg-config, which
, libnl, protobuf, protobufc, shadow
}:
2015-08-10 18:34:09 +01:00
stdenv.mkDerivation rec {
pname = "nsjail";
version = "3.0"; # Bumping? Remove the bison patch.
2015-08-10 18:34:09 +01:00
2017-10-21 23:13:11 +01:00
src = fetchFromGitHub {
owner = "google";
repo = "nsjail";
rev = version;
fetchSubmodules = true;
2020-07-23 16:49:56 +01:00
sha256 = "1w6x8xcrs0i1y3q41gyq8z3cq9x24qablklc4jiydf855lhqn4dh";
2015-08-10 18:34:09 +01:00
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ autoconf bison flex libtool pkg-config which ];
2018-10-10 22:33:43 +01:00
buildInputs = [ libnl protobuf protobufc ];
enableParallelBuilding = true;
2017-10-21 23:13:11 +01:00
patches = [
# To remove after bumping 3.0
./001-fix-bison-link-error.patch
];
2020-07-23 16:49:56 +01:00
preBuild = ''
makeFlagsArray+=(USER_DEFINES='-DNEWUIDMAP_PATH=${shadow}/bin/newuidmap -DNEWGIDMAP_PATH=${shadow}/bin/newgidmap')
'';
2015-08-10 18:34:09 +01:00
installPhase = ''
mkdir -p $out/bin $out/share/man/man1
install nsjail $out/bin/
install nsjail.1 $out/share/man/man1/
2015-08-10 18:34:09 +01:00
'';
meta = with lib; {
2017-10-21 23:13:11 +01:00
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 16:49:56 +01:00
maintainers = with maintainers; [ arturcygan bosu c0bw3b ];
2017-10-21 23:13:11 +01:00
platforms = platforms.linux;
2015-08-10 18:34:09 +01:00
};
}