gnome3.caribou: clean up

This commit is contained in:
Jan Tojnar 2017-11-12 07:58:27 +01:00
parent d6d8dfd671
commit 7600abe61c
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,8 +1,10 @@
{ fetchurl, stdenv, pkgconfig, gnome3, clutter, dbus, pythonPackages, libxml2 { fetchurl, stdenv, pkgconfig, gnome3, clutter, dbus, python3Packages, libxml2
, libxklavier, libXtst, gtk2, intltool, libxslt, at_spi2_core, autoreconfHook }: , libxklavier, libXtst, gtk2, intltool, libxslt, at_spi2_core, autoreconfHook
, wrapGAppsHook }:
let let
majorVersion = "0.4"; majorVersion = "0.4";
pythonEnv = python3Packages.python.withPackages ( ps: with ps; [ pygobject3 ] );
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "caribou-${majorVersion}.21"; name = "caribou-${majorVersion}.21";
@ -12,11 +14,11 @@ stdenv.mkDerivation rec {
sha256 = "0mfychh1q3dx0b96pjz9a9y112bm9yqyim40yykzxx1hppsdjhww"; sha256 = "0mfychh1q3dx0b96pjz9a9y112bm9yqyim40yykzxx1hppsdjhww";
}; };
nativeBuildInputs = [ pkgconfig autoreconfHook ]; nativeBuildInputs = [ pkgconfig intltool libxslt libxml2 autoreconfHook wrapGAppsHook ];
buildInputs = with gnome3; buildInputs = with gnome3;
[ glib gtk clutter at_spi2_core dbus pythonPackages.python [ glib gtk clutter at_spi2_core dbus pythonEnv python3Packages.pygobject3
pythonPackages.pygobject3 libxml2 libXtst gtk2 intltool libxslt ]; libXtst gtk2 ];
propagatedBuildInputs = [ gnome3.libgee libxklavier ]; propagatedBuildInputs = [ gnome3.libgee libxklavier ];