From 82f5a2a336105fd2f0c9a975fe3b86b711f55f4d Mon Sep 17 00:00:00 2001 From: seth Date: Fri, 14 Jun 2024 20:13:37 -0400 Subject: [PATCH] garnet: don't overuse `with lib;` https://github.com/NixOS/nixpkgs/issues/208242 --- pkgs/by-name/ga/garnet/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ga/garnet/package.nix b/pkgs/by-name/ga/garnet/package.nix index 5e9aee917c4e..da38100f4199 100644 --- a/pkgs/by-name/ga/garnet/package.nix +++ b/pkgs/by-name/ga/garnet/package.nix @@ -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"; }; }