about summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/core/caribou/default.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2017-11-27 12:19:01 +0100
committerVladimír Čunát <vcunat@gmail.com>2017-11-27 12:19:01 +0100
commit6345089ca0af23a29387f48060a53dff0d0d30f5 (patch)
treeaa11989838217951662f46c011205e11d525e4dc /pkgs/desktops/gnome-3/core/caribou/default.nix
parent658951917437e7d587c8a206cc6497a7f1192891 (diff)
parente69a3248f7c8308b0d583941e8f1bb1a99a431a7 (diff)
downloadnixlib-6345089ca0af23a29387f48060a53dff0d0d30f5.tar
nixlib-6345089ca0af23a29387f48060a53dff0d0d30f5.tar.gz
nixlib-6345089ca0af23a29387f48060a53dff0d0d30f5.tar.bz2
nixlib-6345089ca0af23a29387f48060a53dff0d0d30f5.tar.lz
nixlib-6345089ca0af23a29387f48060a53dff0d0d30f5.tar.xz
nixlib-6345089ca0af23a29387f48060a53dff0d0d30f5.tar.zst
nixlib-6345089ca0af23a29387f48060a53dff0d0d30f5.zip
Merge #29392: gnome3: 3.24 -> 3.26
It might be slightly confusing that a couple of the changes will be twice
in the history, but let's merge this way.
Diffstat (limited to 'pkgs/desktops/gnome-3/core/caribou/default.nix')
-rw-r--r--pkgs/desktops/gnome-3/core/caribou/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/desktops/gnome-3/core/caribou/default.nix b/pkgs/desktops/gnome-3/core/caribou/default.nix
index e405d8edfbaf..e463fe0e03f0 100644
--- a/pkgs/desktops/gnome-3/core/caribou/default.nix
+++ b/pkgs/desktops/gnome-3/core/caribou/default.nix
@@ -1,8 +1,10 @@
-{ fetchurl, stdenv, pkgconfig, gnome3, clutter, dbus, pythonPackages, libxml2
-, libxklavier, libXtst, gtk2, intltool, libxslt, at_spi2_core, autoreconfHook }:
+{ fetchurl, stdenv, pkgconfig, gnome3, clutter, dbus, python3Packages, libxml2
+, libxklavier, libXtst, gtk2, intltool, libxslt, at_spi2_core, autoreconfHook
+, wrapGAppsHook }:
 
 let
   majorVersion = "0.4";
+  pythonEnv = python3Packages.python.withPackages ( ps: with ps; [ pygobject3 ] );
 in
 stdenv.mkDerivation rec {
   name = "caribou-${majorVersion}.21";
@@ -12,11 +14,11 @@ stdenv.mkDerivation rec {
     sha256 = "0mfychh1q3dx0b96pjz9a9y112bm9yqyim40yykzxx1hppsdjhww";
   };
 
-  nativeBuildInputs = [ pkgconfig autoreconfHook ];
+  nativeBuildInputs = [ pkgconfig intltool libxslt libxml2 autoreconfHook wrapGAppsHook ];
 
   buildInputs = with gnome3;
-    [ glib gtk clutter at_spi2_core dbus pythonPackages.python
-      pythonPackages.pygobject3 libxml2 libXtst gtk2 intltool libxslt ];
+    [ glib gtk clutter at_spi2_core dbus pythonEnv python3Packages.pygobject3
+      libXtst gtk2 ];
 
   propagatedBuildInputs = [ gnome3.libgee libxklavier ];