Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / desktops / gnome / core / caribou / default.nix
blobff8af6272799320a81b0332bd3d267a1f014b7b0
1 { fetchurl, lib, stdenv, pkg-config, gnome, glib, gtk3, clutter, dbus, python3, libxml2
2 , libxklavier, libXtst, gtk2, intltool, libxslt, at-spi2-core, autoreconfHook
3 , wrapGAppsHook3, libgee, vala }:
5 let
6   pname = "caribou";
7   version = "0.4.21";
8   pythonEnv = python3.withPackages ( ps: with ps; [ pygobject3 ] );
9 in stdenv.mkDerivation rec {
10   name = "${pname}-${version}";
12   src = fetchurl {
13     url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${name}.tar.xz";
14     sha256 = "0mfychh1q3dx0b96pjz9a9y112bm9yqyim40yykzxx1hppsdjhww";
15   };
17   patches = [
18     # Fix crash in GNOME Flashback
19     # https://bugzilla.gnome.org/show_bug.cgi?id=791001
20     (fetchurl {
21       url = "https://bugzilla.gnome.org/attachment.cgi?id=364774";
22       sha256 = "15k1455grf6knlrxqbjnk7sals1730b0whj30451scp46wyvykvd";
23     })
24     # Stop patching the generated GIR, fixes build with latest vala
25     (fetchurl {
26       url = "https://gitlab.gnome.org/GNOME/caribou/-/commit/c52ce71c49dc8d6109a58d16cc8d491d7bd1d781.patch";
27       sha256 = "sha256-jbF1Ygp8Q0ENN/5aEpROuK5zkufIfn6cGW8dncl7ET4=";
28     })
29     (fetchurl {
30       name = "fix-build-modern-vala.patch";
31       url = "https://gitlab.gnome.org/GNOME/caribou/-/commit/76fbd11575f918fc898cb0f5defe07f67c11ec38.patch";
32       sha256 = "0qy27zk7889hg51nx40afgppcx9iaihxbg3aqz9w35d6fmhr2k2y";
33     })
34     (fetchurl {
35       name = "CVE-2021-3567.patch";
36       url = "https://gitlab.gnome.org/GNOME/caribou/-/commit/d41c8e44b12222a290eaca16703406b113a630c6.patch";
37       sha256 = "1vd2j3823k2p3msv7fq2437p3jvxzbd7hyh07i80g9754ylh92y8";
38     })
39   ];
41   nativeBuildInputs = [ pkg-config intltool libxslt libxml2 autoreconfHook wrapGAppsHook3 vala ];
43   buildInputs = [
44     glib gtk3 clutter at-spi2-core dbus pythonEnv python3.pkgs.pygobject3
45     libXtst gtk2
46   ];
48   propagatedBuildInputs = [ libgee libxklavier ];
50   postPatch = ''
51     patchShebangs .
52     substituteInPlace libcaribou/Makefile.am --replace "--shared-library=libcaribou.so.0" "--shared-library=$out/lib/libcaribou.so.0"
53   '';
55   passthru = {
56     updateScript = gnome.updateScript {
57       packageName = pname;
58       attrPath = "gnome.${pname}";
59     };
60   };
62   meta = with lib; {
63     description = "Input assistive technology intended for switch and pointer users";
64     mainProgram = "caribou-preferences";
65     homepage = "https://gitlab.gnome.org/Archive/caribou";
66     license = licenses.lgpl21;
67     maintainers = [ ];
68     platforms = platforms.linux;
69   };