spirit: 0.5.0 -> 0.6.0

This commit is contained in:
Aaron Jheng 2024-10-22 02:04:57 +00:00
parent 50db3b6fbb
commit dcf0d465c7
No known key found for this signature in database
GPG Key ID: F6A547A869D050A3

View File

@ -1,24 +1,28 @@
{ lib {
, buildGoModule lib,
, fetchFromGitHub buildGoModule,
fetchFromGitHub,
}: }:
buildGoModule rec { buildGoModule rec {
pname = "spirit"; pname = "spirit";
version = "0.5.0"; version = "0.6.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "cashapp"; owner = "cashapp";
repo = "spirit"; repo = "spirit";
rev = "v${version}-prerelease"; rev = "v${version}-prerelease";
hash = "sha256-e0Eu7BeOwZA8UKwonuuOde1idzaIMtprWya7nxgqyjs="; hash = "sha256-mI4nO/yQdCrqxCDyOYQPQ905EVreYPEiupe+F4RjIqw=";
}; };
vendorHash = "sha256-es1PGgLoE3DklnQziRjWmY7f6NNVd24L2JiuLkol6HI="; vendorHash = "sha256-es1PGgLoE3DklnQziRjWmY7f6NNVd24L2JiuLkol6HI=";
subPackages = [ "cmd/spirit" ]; subPackages = [ "cmd/spirit" ];
ldflags = [ "-s" "-w" ]; ldflags = [
"-s"
"-w"
];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/cashapp/spirit"; homepage = "https://github.com/cashapp/spirit";