git-spice: 0.16.1 -> 0.18.0 (#447415)

authored by pyrox.dev and committed by GitHub dfe51b19 3c9c17cf

+9 -9
+9 -9
pkgs/by-name/gi/git-spice/package.nix
··· 1 { 2 lib, 3 stdenv, 4 - buildGo124Module, 5 fetchFromGitHub, 6 git, 7 nix-update-script, 8 installShellFiles, 9 }: 10 11 - buildGo124Module rec { 12 pname = "git-spice"; 13 - version = "0.16.1"; 14 15 src = fetchFromGitHub { 16 owner = "abhinav"; 17 repo = "git-spice"; 18 - tag = "v${version}"; 19 - hash = "sha256-SILcEXyUo73c8gPDDESCkm/eQIh8elM850qwJqTyO6E="; 20 }; 21 22 - vendorHash = "sha256-T6zSwQdDWYQqe8trIlhpU8dUQXtz8OGmnW5L5AVjGn8="; 23 24 subPackages = [ "." ]; 25 ··· 32 ldflags = [ 33 "-s" 34 "-w" 35 - "-X=main._version=${version}" 36 ]; 37 38 __darwinAllowLocalNetworking = true; ··· 55 meta = { 56 description = "Manage stacked Git branches"; 57 homepage = "https://abhinav.github.io/git-spice/"; 58 - changelog = "https://github.com/abhinav/git-spice/blob/${src.rev}/CHANGELOG.md"; 59 license = lib.licenses.gpl3Only; 60 maintainers = [ lib.maintainers.vinnymeller ]; 61 mainProgram = "gs"; 62 }; 63 - }
··· 1 { 2 lib, 3 stdenv, 4 + buildGoModule, 5 fetchFromGitHub, 6 git, 7 nix-update-script, 8 installShellFiles, 9 }: 10 11 + buildGoModule (finalAttrs: { 12 pname = "git-spice"; 13 + version = "0.18.0"; 14 15 src = fetchFromGitHub { 16 owner = "abhinav"; 17 repo = "git-spice"; 18 + tag = "v${finalAttrs.version}"; 19 + hash = "sha256-9Gt4dS1Wu3w/iS0vtYO3XHyknKQEveob9slwNA/HAks="; 20 }; 21 22 + vendorHash = "sha256-VCUNaWi14Pc39ncWzZZsdsZSd+IxYFhbm1cfTZ40dMw="; 23 24 subPackages = [ "." ]; 25 ··· 32 ldflags = [ 33 "-s" 34 "-w" 35 + "-X=main._version=${finalAttrs.version}" 36 ]; 37 38 __darwinAllowLocalNetworking = true; ··· 55 meta = { 56 description = "Manage stacked Git branches"; 57 homepage = "https://abhinav.github.io/git-spice/"; 58 + changelog = "https://github.com/abhinav/git-spice/blob/${finalAttrs.src.rev}/CHANGELOG.md"; 59 license = lib.licenses.gpl3Only; 60 maintainers = [ lib.maintainers.vinnymeller ]; 61 mainProgram = "gs"; 62 }; 63 + })