garnet: don't overuse with lib;

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

View File

@ -26,8 +26,7 @@ buildDotnetModule rec {
"net8.0"
];
meta = with lib; {
mainProgram = "GarnetServer";
meta = {
description = "Remote cache-store from Microsoft Research";
longDescription = ''
A remote cache-store that offers strong performance, scalability,
@ -36,7 +35,8 @@ buildDotnetModule rec {
'';
homepage = "https://microsoft.github.io/garnet/";
changelog = "https://github.com/microsoft/garnet/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ getchoo ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ getchoo ];
mainProgram = "GarnetServer";
};
}