nixpkgs/pkgs/desktops/gnome-3/core/caribou/default.nix

46 lines
1.4 KiB
Nix
Raw Normal View History

2017-11-12 06:58:27 +00:00
{ fetchurl, stdenv, pkgconfig, gnome3, clutter, dbus, python3Packages, libxml2
, libxklavier, libXtst, gtk2, intltool, libxslt, at-spi2-core, autoreconfHook
2017-11-12 06:58:27 +00:00
, wrapGAppsHook }:
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}";
src = fetchurl {
2018-03-03 08:01:21 +00:00
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
sha256 = "0mfychh1q3dx0b96pjz9a9y112bm9yqyim40yykzxx1hppsdjhww";
};
2017-11-12 06:58:27 +00:00
nativeBuildInputs = [ pkgconfig intltool libxslt libxml2 autoreconfHook wrapGAppsHook ];
buildInputs = with gnome3;
[ glib gtk clutter at-spi2-core dbus pythonEnv python3Packages.pygobject3
2017-11-12 06:58:27 +00:00
libXtst gtk2 ];
propagatedBuildInputs = [ gnome3.libgee libxklavier ];
postPatch = ''
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}";
};
};
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;
platforms = platforms.linux;
2018-03-03 08:01:21 +00:00
license = licenses.lgpl21;
maintainers = gnome3.maintainers;
};
}