zathuraPkgs: drop pkgs from callPackage input

This commit is contained in:
novenary
2024-09-28 12:11:53 +03:00
parent 3dc8993b21
commit 94324a6d3c
+5 -3
View File
@@ -1,11 +1,13 @@
{
config,
pkgs,
lib,
stdenv,
newScope,
gtk3,
useMupdf ? true,
}:
lib.makeScope pkgs.newScope (
lib.makeScope newScope (
self:
let
callPackage = self.callPackage;
@@ -13,7 +15,7 @@ lib.makeScope pkgs.newScope (
{
inherit useMupdf;
gtk = pkgs.gtk3;
gtk = gtk3;
zathura_core = callPackage ./core { };