diff options
author | worldofpeace | 2019-05-22 07:03:39 -0400 |
---|---|---|
committer | worldofpeace | 2019-07-22 18:50:57 -0400 |
commit | b1bc0645eaa0118757275871c31fe17547cbc477 (patch) | |
tree | 06fdfe593631b14188fd377e74d9e37d17bb5c49 /pkgs/desktops/gnome-3/core/gjs | |
parent | 23a3256ee1ece61eeb4e9a9a1fb6131b35e86abc (diff) |
gdk-pixbuf: rename from gdk_pixbuf
Diffstat (limited to 'pkgs/desktops/gnome-3/core/gjs')
-rw-r--r-- | pkgs/desktops/gnome-3/core/gjs/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/desktops/gnome-3/core/gjs/default.nix b/pkgs/desktops/gnome-3/core/gjs/default.nix index ef4de3699151..4e43d5f9d50c 100644 --- a/pkgs/desktops/gnome-3/core/gjs/default.nix +++ b/pkgs/desktops/gnome-3/core/gjs/default.nix @@ -1,5 +1,5 @@ { fetchurl, stdenv, pkgconfig, gnome3, gtk3, atk, gobject-introspection -, spidermonkey_60, pango, readline, glib, libxml2, dbus, gdk_pixbuf +, spidermonkey_60, pango, readline, glib, libxml2, dbus, gdk-pixbuf , makeWrapper }: stdenv.mkDerivation rec { @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { moveToOutput "libexec/gjs/installed-tests" "$installedTests" wrapProgram "$installedTests/libexec/gjs/installed-tests/minijasmine" \ - --prefix GI_TYPELIB_PATH : "${stdenv.lib.makeSearchPath "lib/girepository-1.0" [ gtk3 atk pango.out gdk_pixbuf ]}:$installedTests/libexec/gjs/installed-tests" + --prefix GI_TYPELIB_PATH : "${stdenv.lib.makeSearchPath "lib/girepository-1.0" [ gtk3 atk pango.out gdk-pixbuf ]}:$installedTests/libexec/gjs/installed-tests" ''; meta = with stdenv.lib; { |