restic-rest-server: 0.11.0 -> 0.12.0 (#228395)

Diff: https://github.com/restic/rest-server/compare/v0.11.0...v0.12.0

Changelog: https://github.com/restic/rest-server/blob/v0.12.0/CHANGELOG.md

authored by

Robert Schütz and committed by
GitHub
732d2353 0fbfdbf5

+4 -12
+4 -12
pkgs/tools/backup/restic/rest-server.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "restic-rest-server"; 5 - version = "0.11.0"; 5 + version = "0.12.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "restic"; 9 9 repo = "rest-server"; 10 10 rev = "v${version}"; 11 - hash = "sha256-ninPODztNzvB2js9cuNAuExQLK/OGOu80ZNW0BPrdds="; 11 + hash = "sha256-FnT7AG9na/KdWimUqhcF1QndGdT+Nc8ao5zlSeN/fJ0="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-8x5qYvIX/C5BaewrTNVbIIadL+7XegbRUZiEDWmJM+c="; 15 - 16 - patches = [ 17 - (fetchpatch { 18 - name = "backport_rest-server_tests_os.TempDir.patch"; 19 - url = "https://github.com/restic/rest-server/commit/a87a50ad114bdaddc895413396438df6ea0affbb.patch"; 20 - sha256 = "sha256-O6ENxTK2fCVTZZKTFHrvZ+3dT8TbgbIE0o3sYE/RUqc="; 21 - }) 22 - 23 - ]; 14 + vendorHash = "sha256-Q0XazJmfmAwR2wXD/RXO6nPiNyWFubBYL3kNFKBRMzc="; 24 15 25 16 meta = with lib; { 17 + changelog = "https://github.com/restic/rest-server/blob/${src.rev}/CHANGELOG.md"; 26 18 description = "A high performance HTTP server that implements restic's REST backend API"; 27 19 homepage = "https://github.com/restic/rest-server"; 28 20 platforms = platforms.unix;