diff --git a/pkgs/applications/misc/zathura/default.nix b/pkgs/applications/misc/zathura/default.nix index 9bc301985d9e..88241856632d 100644 --- a/pkgs/applications/misc/zathura/default.nix +++ b/pkgs/applications/misc/zathura/default.nix @@ -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 { };