Files
nixpkgs/pkgs/by-name/ga/garnet/package.nix
R. Ryantm 494c83bf05 garnet: 1.0.81 -> 1.0.82
(cherry picked from commit e9647db1ce)
2025-08-20 18:16:19 -04:00

61 lines
1.3 KiB
Nix

{
lib,
buildDotnetModule,
dotnetCorePackages,
fetchFromGitHub,
nix-update-script,
}:
buildDotnetModule rec {
pname = "garnet";
version = "1.0.82";
src = fetchFromGitHub {
owner = "microsoft";
repo = "garnet";
tag = "v${version}";
hash = "sha256-ju39u5GvlxKxTn47MAicNFM9Delk6n/ht74p2XxmM44=";
};
projectFile = "main/GarnetServer/GarnetServer.csproj";
nugetDeps = ./deps.json;
dotnet-sdk =
with dotnetCorePackages;
sdk_9_0
// {
inherit
(combinePackages [
sdk_9_0
sdk_8_0
])
packages
targetPackages
;
};
dotnetBuildFlags = [
"-f"
"net9.0"
];
dotnetInstallFlags = dotnetBuildFlags;
passthru = {
updateScript = nix-update-script { };
};
meta = {
description = "Remote cache-store from Microsoft Research";
longDescription = ''
A remote cache-store that offers strong performance, scalability,
storage, recovery, cluster sharding, key migration, replication features,
and compatibility with existing Redis clients
'';
homepage = "https://microsoft.github.io/garnet/";
changelog = "https://github.com/microsoft/garnet/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ getchoo ];
mainProgram = "GarnetServer";
};
}