gucci: 1.6.10 -> 1.9.0

Diff: https://github.com/noqcks/gucci/compare/refs/tags/v1.6.10...refs/tags/v1.9.0

emaryn 103ce783 81229d11

+10 -10
+10 -10
pkgs/by-name/gu/gucci/package.nix
··· 6 gucci, 7 }: 8 9 - buildGoModule rec { 10 pname = "gucci"; 11 - version = "1.6.10"; 12 13 src = fetchFromGitHub { 14 owner = "noqcks"; 15 repo = "gucci"; 16 - tag = version; 17 - sha256 = "sha256-bwPQQtaPHby96C5ZHZhBTok+m8GPPS40U1CUPVYqCa4="; 18 }; 19 20 - vendorHash = "sha256-/4OnbtxxhXQnmSV6UbjgzXdL7szhL9rKiG5BR8FsyqI="; 21 22 ldflags = [ 23 "-s" 24 "-w" 25 - "-X main.AppVersion=${version}" 26 ]; 27 28 passthru.tests.version = testers.testVersion { ··· 38 "-skip=^TestIntegration" 39 ]; 40 41 - meta = with lib; { 42 description = "Simple CLI templating tool written in golang"; 43 mainProgram = "gucci"; 44 homepage = "https://github.com/noqcks/gucci"; 45 - license = licenses.mit; 46 - maintainers = with maintainers; [ braydenjw ]; 47 }; 48 - }
··· 6 gucci, 7 }: 8 9 + buildGoModule (finalAttrs: { 10 pname = "gucci"; 11 + version = "1.9.0"; 12 13 src = fetchFromGitHub { 14 owner = "noqcks"; 15 repo = "gucci"; 16 + tag = "v${finalAttrs.version}"; 17 + hash = "sha256-CL4Vn3DP40tBBejN28iQSIV+2GtHwl7IS8zVJ5wcqwY="; 18 }; 19 20 + vendorHash = "sha256-+0pq2lbwfvWdAiz7nONrmlRRxS886B+wieoMeuxLUtM="; 21 22 ldflags = [ 23 "-s" 24 "-w" 25 + "-X main.AppVersion=${finalAttrs.version}" 26 ]; 27 28 passthru.tests.version = testers.testVersion { ··· 38 "-skip=^TestIntegration" 39 ]; 40 41 + meta = { 42 description = "Simple CLI templating tool written in golang"; 43 mainProgram = "gucci"; 44 homepage = "https://github.com/noqcks/gucci"; 45 + license = lib.licenses.mit; 46 + maintainers = with lib.maintainers; [ braydenjw ]; 47 }; 48 + })