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