lol

git-spice: 0.10.0 -> 0.12.0 (#387765)

authored by

Arne Keller and committed by
GitHub
6a951071 cc832eaa

+5 -5
+5 -5
pkgs/by-name/gi/git-spice/package.nix
··· 1 1 { 2 2 lib, 3 3 stdenv, 4 - buildGo123Module, 4 + buildGo124Module, 5 5 fetchFromGitHub, 6 6 git, 7 7 nix-update-script, 8 8 installShellFiles, 9 9 }: 10 10 11 - buildGo123Module rec { 11 + buildGo124Module rec { 12 12 pname = "git-spice"; 13 - version = "0.10.0"; 13 + version = "0.12.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "abhinav"; 17 17 repo = "git-spice"; 18 18 tag = "v${version}"; 19 - hash = "sha256-1EWuKjvDeOV6W+nntdevUI/SO68ssYgoxJ5QIy5jkFM="; 19 + hash = "sha256-ew0ehaYXJgc1ePdQCxxfahBdTs5zsiHDfB4SdS2WZ8A="; 20 20 }; 21 21 22 - vendorHash = "sha256-F9CyhUtdkwvEsmQ+T5zt2n+TBRhVgyr2CEOvIzcXpug="; 22 + vendorHash = "sha256-jlCNcjACtms9kI4Lo8AtUfxqODyv4U2nJITGpBNxk9I="; 23 23 24 24 subPackages = [ "." ]; 25 25