summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.10/core/caribou/default.nix
blob: ba5dc7e7b90aa20c5f4efb556eb8c4c48dd41431 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ fetchurl, stdenv, pkgconfig, gnome3, clutter, dbus, pythonPackages, libxml2
, libxklavier, libXtst, gtk2, intltool, libxslt, at_spi2_core }:


stdenv.mkDerivation rec {
  name = "caribou-0.4.12";

  src = fetchurl {
    url = "mirror://gnome/sources/caribou/0.4/${name}.tar.xz";
    sha256 = "0235sws58rg0kadxbp2nq5ha76zmhd4mr10n9qlbryf8p78qsvii";
  };

  buildInputs = with gnome3;
    [ glib pkgconfig gtk clutter at_spi2_core dbus pythonPackages.python pythonPackages.pygobject3
      libxml2 libXtst gtk2 intltool libxslt ];

  propagatedBuildInputs = [ gnome3.libgee libxklavier ];

  preBuild = ''
    patchShebangs .
  '';

  meta = with stdenv.lib; {
    platforms = platforms.linux;
  };

}