From 9a3855c84abfe829dfbc7a06df37a68e122015b2 Mon Sep 17 00:00:00 2001 From: GetPsyched Date: Thu, 31 Oct 2024 17:36:16 +0400 Subject: [PATCH] mgitstatus: remove `with lib;` expressions --- pkgs/by-name/mg/mgitstatus/package.nix | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/pkgs/by-name/mg/mgitstatus/package.nix b/pkgs/by-name/mg/mgitstatus/package.nix index e5a1b14c8ede..da906e08f922 100644 --- a/pkgs/by-name/mg/mgitstatus/package.nix +++ b/pkgs/by-name/mg/mgitstatus/package.nix @@ -1,7 +1,8 @@ -{ fetchFromGitHub -, lib -, stdenvNoCC -, testers +{ + fetchFromGitHub, + lib, + stdenvNoCC, + testers, }: stdenvNoCC.mkDerivation (finalAttrs: { @@ -24,14 +25,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { version = "v${finalAttrs.version}"; }; - meta = with lib; { + meta = { description = "Show uncommitted, untracked and unpushed changes for multiple Git repos"; downloadPage = "https://github.com/fboender/multi-git-status/releases/tag/v${finalAttrs.version}"; homepage = "https://github.com/fboender/multi-git-status"; changelog = "https://github.com/fboender/multi-git-status/releases/tag/${finalAttrs.src.rev}"; - license = licenses.mit; - maintainers = with maintainers; [ getpsyched ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ getpsyched ]; mainProgram = "mgitstatus"; - platforms = platforms.all; + platforms = lib.platforms.all; }; })