From d0d10b0a445afd8b9c756cbfaeefb8a3e5d82cd1 Mon Sep 17 00:00:00 2001 From: Ryan Omasta Date: Wed, 7 Aug 2024 17:49:58 -0600 Subject: [PATCH] sherlock: remove uses of with lib --- pkgs/by-name/sh/sherlock/package.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/sh/sherlock/package.nix b/pkgs/by-name/sh/sherlock/package.nix index 4d7cb6a688a0..9d96cc3da382 100644 --- a/pkgs/by-name/sh/sherlock/package.nix +++ b/pkgs/by-name/sh/sherlock/package.nix @@ -3,7 +3,6 @@ fetchFromGitHub, makeWrapper, python3, - unstableGitUpdater, poetry, }: @@ -75,11 +74,11 @@ python3.pkgs.buildPythonApplication rec { "'not online'" ]; - meta = with lib; { + meta = { homepage = "https://sherlock-project.github.io/"; description = "Hunt down social media accounts by username across social networks"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "sherlock"; - maintainers = with maintainers; [ applePrincess ]; + maintainers = with lib.maintainers; [ applePrincess ]; }; }