restic-rest-server: remove vars from patch url

addresses feedback from #172817.
style only. no functional changes.

+3 -4
+3 -4
pkgs/tools/backup/restic/rest-server.nix
··· 3 3 buildGoModule rec { 4 4 pname = "restic-rest-server"; 5 5 version = "0.11.0"; 6 - owner = "restic"; 7 - repo = "rest-server"; 8 6 9 7 src = fetchFromGitHub { 10 - inherit owner repo; 8 + owner = "restic"; 9 + repo = "rest-server"; 11 10 rev = "v${version}"; 12 11 hash = "sha256-ninPODztNzvB2js9cuNAuExQLK/OGOu80ZNW0BPrdds="; 13 12 }; ··· 17 16 patches = [ 18 17 (fetchpatch { 19 18 name = "backport_rest-server_tests_os.TempDir.patch"; 20 - url = "https://github.com/${owner}/${repo}/commit/a87a50ad114bdaddc895413396438df6ea0affbb.patch"; 19 + url = "https://github.com/restic/rest-server/commit/a87a50ad114bdaddc895413396438df6ea0affbb.patch"; 21 20 sha256 = "sha256-O6ENxTK2fCVTZZKTFHrvZ+3dT8TbgbIE0o3sYE/RUqc="; 22 21 }) 23 22