2017-08-20 09:52:30 +01:00
|
|
|
{ fetchurl, stdenv, pkgconfig, gnome3, clutter, dbus, pythonPackages, libxml2
|
|
|
|
, libxklavier, libXtst, gtk2, intltool, libxslt, at_spi2_core, autoreconfHook }:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
majorVersion = "0.4";
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "caribou-${majorVersion}.21";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/caribou/${majorVersion}/${name}.tar.xz";
|
|
|
|
sha256 = "0mfychh1q3dx0b96pjz9a9y112bm9yqyim40yykzxx1hppsdjhww";
|
|
|
|
};
|
|
|
|
|
2017-08-20 09:52:30 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
2017-06-25 17:59:23 +01:00
|
|
|
|
2016-09-18 20:35:23 +01:00
|
|
|
buildInputs = with gnome3;
|
2017-08-20 09:52:30 +01:00
|
|
|
[ glib gtk clutter at_spi2_core dbus pythonPackages.python
|
|
|
|
pythonPackages.pygobject3 libxml2 libXtst gtk2 intltool libxslt ];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ gnome3.libgee libxklavier ];
|
|
|
|
|
2017-08-20 09:52:30 +01:00
|
|
|
postPatch = ''
|
2016-09-18 20:35:23 +01:00
|
|
|
patchShebangs .
|
|
|
|
substituteInPlace libcaribou/Makefile.am --replace "--shared-library=libcaribou.so.0" "--shared-library=$out/lib/libcaribou.so.0"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|