mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildDotnetModule,
|
|
fetchFromGitHub,
|
|
dotnetCorePackages,
|
|
nix-update-script,
|
|
}:
|
|
buildDotnetModule rec {
|
|
pname = "garnet";
|
|
version = "1.0.16";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "microsoft";
|
|
repo = "garnet";
|
|
rev = "v${version}";
|
|
hash = "sha256-0c6iJMSB9ThJVookibZL5CoAhrVMtY6oHYn92nN0114=";
|
|
};
|
|
|
|
projectFile = "main/GarnetServer/GarnetServer.csproj";
|
|
nugetDeps = ./deps.nix;
|
|
|
|
dotnet-sdk = with dotnetCorePackages; combinePackages [ sdk_6_0 sdk_8_0 ];
|
|
dotnet-runtime = dotnetCorePackages.runtime_8_0;
|
|
|
|
dotnetBuildFlags = [
|
|
"-f"
|
|
"net8.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";
|
|
};
|
|
}
|