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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1.2 KiB
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchFromGitHub, autoconf, bison, flex, libtool, pkg-config, which
2022-09-16 09:39:20 +00:00
, libnl, protobuf, protobufc, shadow, installShellFiles
}:
2015-08-10 17:34:09 +00:00
stdenv.mkDerivation rec {
pname = "nsjail";
version = "3.3";
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;
hash = "sha256-L5x3rUDd1nXxDjoP/ZErQa02w2MJSkMBlgu00cy1D3M=";
2015-08-10 17:34:09 +00:00
};
nativeBuildInputs = [ autoconf bison flex installShellFiles libtool pkg-config which ];
2018-10-10 21:33:43 +00:00
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 = ''
runHook preInstall
2022-09-16 09:39:20 +00:00
install -Dm755 nsjail "$out/bin/nsjail"
installManPage nsjail.1
runHook postInstall
2015-08-10 17:34:09 +00:00
'';
meta = with lib; {
2017-10-21 22:13:11 +00:00
description = "A light-weight process isolation tool, making use of Linux namespaces and seccomp-bpf syscall filters";
homepage = "https://nsjail.dev/";
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
};
}