Merge pull request #260525 from r-ryantm/auto-update/nsjail

nsjail: 3.3 -> 3.4

authored by

Weijia Wang and committed by
GitHub
5087a680 85d52665

+3 -2
+3 -2
pkgs/tools/security/nsjail/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "nsjail"; 7 - version = "3.3"; 7 + version = "3.4"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "google"; 11 11 repo = "nsjail"; 12 12 rev = version; 13 13 fetchSubmodules = true; 14 - hash = "sha256-L5x3rUDd1nXxDjoP/ZErQa02w2MJSkMBlgu00cy1D3M="; 14 + hash = "sha256-/K+qJV5Dq+my45Cpw6czdsWLtO9lnJwZTsOIRt4Iijk="; 15 15 }; 16 16 17 17 nativeBuildInputs = [ autoconf bison flex installShellFiles libtool pkg-config which ]; ··· 32 32 meta = with lib; { 33 33 description = "A light-weight process isolation tool, making use of Linux namespaces and seccomp-bpf syscall filters"; 34 34 homepage = "https://nsjail.dev/"; 35 + changelog = "https://github.com/google/nsjail/releases/tag/${version}"; 35 36 license = licenses.asl20; 36 37 maintainers = with maintainers; [ arturcygan bosu c0bw3b ]; 37 38 platforms = platforms.linux;