garnet: don't use broken recursion scheme

https://github.com/NixOS/nixpkgs/issues/312345
This commit is contained in:
seth 2024-06-14 20:11:49 -04:00
parent d410d05161
commit 7f1b82fb32
No known key found for this signature in database
GPG Key ID: D31BD0D494BBEE86

View File

@ -2,17 +2,16 @@
lib,
buildDotnetModule,
fetchFromGitHub,
garnet,
dotnetCorePackages,
}:
buildDotnetModule {
buildDotnetModule rec {
pname = "garnet";
version = "1.0.13";
src = fetchFromGitHub {
owner = "microsoft";
repo = "garnet";
rev = "v${garnet.version}";
rev = "v${version}";
hash = "sha256-mAZBYVOAbVPKcOpt+vA4uEK+xEx4qXPnAthsPsxiXkw=";
};
@ -36,7 +35,7 @@ buildDotnetModule {
and compatibility with existing Redis clients
'';
homepage = "https://microsoft.github.io/garnet/";
changelog = "https://github.com/microsoft/garnet/releases/tag/v${garnet.version}";
changelog = "https://github.com/microsoft/garnet/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ getchoo ];
};