backrest: 1.8.1 -> 1.9.2 (#443695)

authored by

Gaétan Lepage and committed by
GitHub
abbb61c7 a28e915d

+8 -4
+8 -4
pkgs/by-name/ba/backrest/package.nix
··· 12 12 }: 13 13 let 14 14 pname = "backrest"; 15 - version = "1.8.1"; 15 + version = "1.9.2"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "garethgeorge"; 19 19 repo = "backrest"; 20 20 tag = "v${version}"; 21 - hash = "sha256-lpYny+5bXIxj+ZFhbSn200sBrDShISESZw+L5sy+X+Q="; 21 + hash = "sha256-3lAWViC9K34R8la/z57kjGJmMmletGd8pJ1dDt+BeKQ="; 22 22 }; 23 23 24 24 frontend = stdenv.mkDerivation (finalAttrs: { ··· 34 34 pnpmDeps = pnpm_9.fetchDeps { 35 35 inherit (finalAttrs) pname version src; 36 36 fetcherVersion = 1; 37 - hash = "sha256-q7VMQb/FRT953yT2cyGMxUPp8p8XkA9mvqGI7S7Eifg="; 37 + hash = "sha256-vJgsU0OXyAKjUJsPOyIY8o3zfNW1BUZ5IL814wmJr3o="; 38 38 }; 39 39 40 40 buildPhase = '' ··· 62 62 internal/resticinstaller/resticinstaller.go 63 63 ''; 64 64 65 - vendorHash = "sha256-AINnBkP+e9C/f/C3t6NK+6PYSVB4NON0C71S6SwUXbE="; 65 + vendorHash = "sha256-oycV8JAJQF/PNc7mmYGzkZbpG8pMwxThmuys9e0+hcc="; 66 66 67 67 nativeBuildInputs = [ 68 68 gzip ··· 97 97 export BACKREST_RESTIC_COMMAND="${restic}/bin/restic" 98 98 export HOME=$(pwd) 99 99 ''; 100 + 101 + # skip tests on darwin due to /etc/protocols failure 102 + # `__darwinAllowLocalNetworking = true;` wasn't sufficient 103 + doCheck = !stdenv.isDarwin; 100 104 101 105 postInstall = '' 102 106 wrapProgram $out/bin/backrest \