From 4562f4fcfef120b667d62bebe7449940ef16d4a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=A9clairevoyant?= <848000+eclairevoyant@users.noreply.github.com> Date: Sun, 26 Nov 2023 14:16:14 -0500 Subject: [PATCH] nhentai: remove `with lib;` --- pkgs/applications/misc/nhentai/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/nhentai/default.nix b/pkgs/applications/misc/nhentai/default.nix index db0f7028415b..1f9fdcf48ccb 100644 --- a/pkgs/applications/misc/nhentai/default.nix +++ b/pkgs/applications/misc/nhentai/default.nix @@ -6,6 +6,7 @@ python3Packages.buildPythonApplication rec { pname = "nhentai"; version = "0.5.3"; + src = fetchFromGitHub { owner = "RicterZ"; repo = pname; @@ -26,11 +27,11 @@ python3Packages.buildPythonApplication rec { future ]; - meta = with lib; { + meta = { homepage = "https://github.com/RicterZ/nhentai"; description = "nHentai is a CLI tool for downloading doujinshi from "; - license = licenses.mit; - maintainers = with maintainers; [ ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ]; mainProgram = "nhentai"; }; }