mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
107 lines
2.5 KiB
Nix
107 lines
2.5 KiB
Nix
{
|
|
fetchurl,
|
|
lib,
|
|
stdenv,
|
|
pkg-config,
|
|
gnome,
|
|
glib,
|
|
gtk3,
|
|
clutter,
|
|
dbus,
|
|
python3,
|
|
libxml2,
|
|
libxklavier,
|
|
libXtst,
|
|
gtk2,
|
|
intltool,
|
|
libxslt,
|
|
at-spi2-core,
|
|
autoreconfHook,
|
|
wrapGAppsHook3,
|
|
libgee,
|
|
vala,
|
|
}:
|
|
|
|
let
|
|
pname = "caribou";
|
|
version = "0.4.21";
|
|
pythonEnv = python3.withPackages (ps: with ps; [ pygobject3 ]);
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "caribou-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/caribou/${lib.versions.majorMinor version}/${name}.tar.xz";
|
|
hash = "sha256-nEPZ9L0w9P6n94DU6LFPdYkQfFLpy2vSAr0NHCBk3lU=";
|
|
};
|
|
|
|
patches = [
|
|
# Fix crash in GNOME Flashback
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=791001
|
|
(fetchurl {
|
|
url = "https://bugzilla.gnome.org/attachment.cgi?id=364774";
|
|
hash = "sha256-bU+/PTfkMh0KAUNCDhYYJ2iq9JlWLtwztdO4/EohYZY=";
|
|
})
|
|
# Stop patching the generated GIR, fixes build with latest vala
|
|
(fetchurl {
|
|
url = "https://gitlab.gnome.org/GNOME/caribou/-/commit/c52ce71c49dc8d6109a58d16cc8d491d7bd1d781.patch";
|
|
hash = "sha256-jbF1Ygp8Q0ENN/5aEpROuK5zkufIfn6cGW8dncl7ET4=";
|
|
})
|
|
(fetchurl {
|
|
name = "fix-build-modern-vala.patch";
|
|
url = "https://gitlab.gnome.org/GNOME/caribou/-/commit/76fbd11575f918fc898cb0f5defe07f67c11ec38.patch";
|
|
hash = "sha256-XkyRYXWmlcHTx2q81WFUMXV273MKkG5DeTAhdOY/wmM=";
|
|
})
|
|
(fetchurl {
|
|
name = "CVE-2021-3567.patch";
|
|
url = "https://gitlab.gnome.org/GNOME/caribou/-/commit/d41c8e44b12222a290eaca16703406b113a630c6.patch";
|
|
hash = "sha256-yIsEqSflpAdQPAB6eNr6fctxzyACu7N1HVfMIdCQou0=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
intltool
|
|
libxslt
|
|
libxml2
|
|
autoreconfHook
|
|
wrapGAppsHook3
|
|
vala
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
gtk3
|
|
clutter
|
|
at-spi2-core
|
|
dbus
|
|
pythonEnv
|
|
python3.pkgs.pygobject3
|
|
libXtst
|
|
gtk2
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
libgee
|
|
libxklavier
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs .
|
|
substituteInPlace libcaribou/Makefile.am --replace "--shared-library=libcaribou.so.0" "--shared-library=$out/lib/libcaribou.so.0"
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript { packageName = "caribou"; };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Input assistive technology intended for switch and pointer users";
|
|
mainProgram = "caribou-preferences";
|
|
homepage = "https://gitlab.gnome.org/Archive/caribou";
|
|
license = licenses.lgpl21;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|