2017-11-12 06:58:27 +00:00
|
|
|
{ fetchurl, stdenv, pkgconfig, gnome3, clutter, dbus, python3Packages, libxml2
|
2018-02-25 02:23:58 +00:00
|
|
|
, libxklavier, libXtst, gtk2, intltool, libxslt, at-spi2-core, autoreconfHook
|
2017-11-12 06:58:27 +00:00
|
|
|
, wrapGAppsHook }:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
let
|
2018-03-03 08:01:21 +00:00
|
|
|
pname = "caribou";
|
|
|
|
version = "0.4.21";
|
2017-11-12 06:58:27 +00:00
|
|
|
pythonEnv = python3Packages.python.withPackages ( ps: with ps; [ pygobject3 ] );
|
2018-03-03 08:01:21 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "${pname}-${version}";
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-03-03 08:01:21 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
|
2016-09-18 20:35:23 +01:00
|
|
|
sha256 = "0mfychh1q3dx0b96pjz9a9y112bm9yqyim40yykzxx1hppsdjhww";
|
|
|
|
};
|
|
|
|
|
2017-11-12 06:58:27 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool libxslt libxml2 autoreconfHook wrapGAppsHook ];
|
2017-06-25 17:59:23 +01:00
|
|
|
|
2016-09-18 20:35:23 +01:00
|
|
|
buildInputs = with gnome3;
|
2018-02-25 02:23:58 +00:00
|
|
|
[ glib gtk clutter at-spi2-core dbus pythonEnv python3Packages.pygobject3
|
2017-11-12 06:58:27 +00:00
|
|
|
libXtst gtk2 ];
|
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"
|
|
|
|
'';
|
|
|
|
|
2018-03-03 08:01:21 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
attrPath = "gnome3.${pname}";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-18 20:35:23 +01:00
|
|
|
meta = with stdenv.lib; {
|
2018-03-03 08:01:21 +00:00
|
|
|
description = "An input assistive technology intended for switch and pointer users";
|
|
|
|
homepage = https://wiki.gnome.org/Projects/Caribou;
|
2016-09-18 20:35:23 +01:00
|
|
|
platforms = platforms.linux;
|
2018-03-03 08:01:21 +00:00
|
|
|
license = licenses.lgpl21;
|
2016-09-18 20:35:23 +01:00
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|