mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
nsjail: 3.2 -> 3.3
* nsjail: 3.2 -> 3.3 (#205507) * nsjail: update homepage for v3.3 Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
This commit is contained in:
parent
e7bc7031ef
commit
ccf0f09e2e
@ -4,17 +4,17 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "nsjail";
|
||||
version = "3.2";
|
||||
version = "3.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "google";
|
||||
repo = "nsjail";
|
||||
rev = version;
|
||||
fetchSubmodules = true;
|
||||
sha256 = "sha256-SFRnCEPawMKEIdmrOnJ45IIb17W1d4qCceuRdWTDTQU=";
|
||||
hash = "sha256-L5x3rUDd1nXxDjoP/ZErQa02w2MJSkMBlgu00cy1D3M=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoconf bison flex libtool pkg-config which installShellFiles ];
|
||||
nativeBuildInputs = [ autoconf bison flex installShellFiles libtool pkg-config which ];
|
||||
buildInputs = [ libnl protobuf protobufc ];
|
||||
enableParallelBuilding = true;
|
||||
|
||||
@ -23,13 +23,15 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstallPhase
|
||||
install -Dm755 nsjail "$out/bin/nsjail"
|
||||
installManPage nsjail.1
|
||||
runHook postInstallPhase
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A light-weight process isolation tool, making use of Linux namespaces and seccomp-bpf syscall filters";
|
||||
homepage = "http://nsjail.com/";
|
||||
homepage = "https://nsjail.dev/";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ arturcygan bosu c0bw3b ];
|
||||
platforms = platforms.linux;
|
||||
|
Loading…
Reference in New Issue
Block a user