mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
garnet: don't overuse with lib;
https://github.com/NixOS/nixpkgs/issues/208242
This commit is contained in:
parent
7f1b82fb32
commit
82f5a2a336
@ -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";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user