summary refs log tree commit diff
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2019-12-03 01:57:49 +0100
committerJan Tojnar <jtojnar@gmail.com>2019-12-03 01:57:49 +0100
commitae323f8566f01ae0579d36f549172c6638743cf4 (patch)
tree15224a95f55a00ed2f14f593ede2f3901f2d1062
parentda04dee9c0a547fda33c3995f4472924ea345929 (diff)
downloadnixpkgs-ae323f8566f01ae0579d36f549172c6638743cf4.tar
nixpkgs-ae323f8566f01ae0579d36f549172c6638743cf4.tar.gz
nixpkgs-ae323f8566f01ae0579d36f549172c6638743cf4.tar.bz2
nixpkgs-ae323f8566f01ae0579d36f549172c6638743cf4.tar.lz
nixpkgs-ae323f8566f01ae0579d36f549172c6638743cf4.tar.xz
nixpkgs-ae323f8566f01ae0579d36f549172c6638743cf4.tar.zst
nixpkgs-ae323f8566f01ae0579d36f549172c6638743cf4.zip
gummi: fix eval with allowAliases = false
-rw-r--r--pkgs/applications/misc/gummi/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/gummi/default.nix b/pkgs/applications/misc/gummi/default.nix
index 273be11ac63..d1daec28482 100644
--- a/pkgs/applications/misc/gummi/default.nix
+++ b/pkgs/applications/misc/gummi/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, pkgs, makeWrapper
+{ stdenv, pkgs, makeWrapper, pango
 , glib, gnome2, gnome3, gtk2-x11, gtkspell2, poppler
 , pkgconfig, intltool, autoreconfHook, wrapGAppsHook
 }:
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
     pkgconfig intltool autoreconfHook makeWrapper wrapGAppsHook
   ];
   buildInputs = [
-    glib gnome2.gtksourceview gnome2.pango gtk2-x11 gtkspell2 poppler
+    glib gnome2.gtksourceview pango gtk2-x11 gtkspell2 poppler
     gnome3.adwaita-icon-theme
   ];