spirit: 0.7.0 -> 0.8.0 (#397384)

This commit is contained in:
Peder Bergebakken Sundt
2025-05-01 18:38:19 +02:00
committed by GitHub
+6 -6
View File
@@ -4,18 +4,18 @@
fetchFromGitHub,
}:
buildGoModule rec {
buildGoModule (finalAttrs: {
pname = "spirit";
version = "0.7.0";
version = "0.8.0";
src = fetchFromGitHub {
owner = "cashapp";
repo = "spirit";
rev = "v${version}-prerelease";
hash = "sha256-qC27kkUWELRFEVhZT7R6ickpAfDbL/AtYx2gRkDTvrI=";
tag = "v${finalAttrs.version}";
hash = "sha256-bGKqiCd9dggppORouoWlAoAaYdx4vAivsP22KWm1fxU=";
};
vendorHash = "sha256-Dq7UeAH7FvY12rEYkpcKpEUzMMrGfubt0WadnZYt8dk=";
vendorHash = "sha256-87WUqUjyfprpY63kEKCAx/AU6TN73W7oMdOaKfl8xt4=";
subPackages = [ "cmd/spirit" ];
@@ -31,4 +31,4 @@ buildGoModule rec {
maintainers = with lib.maintainers; [ aaronjheng ];
mainProgram = "spirit";
};
}
})