From dcd2da36a7abe85984d192fdef35dd566a13a44f Mon Sep 17 00:00:00 2001 From: DontEatOreo <57304299+DontEatOreo@users.noreply.github.com> Date: Fri, 8 Nov 2024 19:32:54 +0200 Subject: [PATCH] csharprepl: remove `with lib;` from `meta` --- pkgs/by-name/cs/csharprepl/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/cs/csharprepl/package.nix b/pkgs/by-name/cs/csharprepl/package.nix index 38eff7c7add8..1279ccec03e8 100644 --- a/pkgs/by-name/cs/csharprepl/package.nix +++ b/pkgs/by-name/cs/csharprepl/package.nix @@ -14,13 +14,13 @@ buildDotnetGlobalTool { nugetHash = "sha256-VkZGnfD8p6oAJ7i9tlfwJfmKfZBHJU7Wdq+K4YjPoRs="; - meta = with lib; { + meta = { description = "C# REPL with syntax highlighting"; homepage = "https://fuqua.io/CSharpRepl"; changelog = "https://github.com/waf/CSharpRepl/blob/main/CHANGELOG.md"; - license = licenses.mpl20; - platforms = platforms.unix; - maintainers = with maintainers; [ donteatoreo ]; + license = lib.licenses.mpl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ donteatoreo ]; mainProgram = "csharprepl"; }; }