Merge pull request #222211 from figsoda/nixpkgs-review

nixpkgs-review: 2.8.0 -> 2.9.0

authored by

Jörg Thalheim and committed by
GitHub
f3ad3f81 cedcd2ee

+8 -4
+8 -4
pkgs/tools/package-management/nixpkgs-review/default.nix
··· 3 3 , fetchFromGitHub 4 4 5 5 , bubblewrap 6 + , nix-output-monitor 6 7 , cacert 7 8 , git 8 9 , nix 9 10 10 11 , withSandboxSupport ? false 12 + , withNom ? false 11 13 }: 12 14 13 15 python3.pkgs.buildPythonApplication rec { 14 16 pname = "nixpkgs-review"; 15 - version = "2.8.0"; 17 + version = "2.9.0"; 16 18 17 19 src = fetchFromGitHub { 18 20 owner = "Mic92"; 19 21 repo = "nixpkgs-review"; 20 22 rev = version; 21 - sha256 = "sha256-v8IRRmONb10sPndfsuaUYMrGbbosj48cbfgANZCtIN0="; 23 + sha256 = "sha256-SNAroKkPXiX5baGPRYnzqiVwPwko/Uari/tvjIU7/4k="; 22 24 }; 23 25 24 26 makeWrapperArgs = 25 27 let 26 - binPath = [ nix git ] ++ lib.optional withSandboxSupport bubblewrap; 28 + binPath = [ nix git ] 29 + ++ lib.optional withSandboxSupport bubblewrap 30 + ++ lib.optional withNom nix-output-monitor; 27 31 in 28 32 [ 29 33 "--prefix PATH : ${lib.makeBinPath binPath}" 30 - "--set NIX_SSL_CERT_FILE ${cacert}/etc/ssl/certs/ca-bundle.crt" 34 + "--set-default NIX_SSL_CERT_FILE ${cacert}/etc/ssl/certs/ca-bundle.crt" 31 35 # we don't have any runtime deps but nix-review shells might inject unwanted dependencies 32 36 "--unset PYTHONPATH" 33 37 ];