mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
e3aaf8ae0b
This fixes: ValueError: Namespace Keybinder not available
65 lines
1.8 KiB
Nix
65 lines
1.8 KiB
Nix
{ lib, fetchFromGitHub, python3Packages, wrapGAppsHook, gobject-introspection, gtk3, keybinder3, xdotool, pango, gdk-pixbuf, atk }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "emote";
|
|
version = "3.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tom-james-watson";
|
|
repo = "Emote";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-brGU5LzE9A1F5AVNIuyd8vFKEh58ijRB5qVEID/KJfY=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "pygobject==3.36.0" "pygobject" \
|
|
--replace "manimpango==0.3.0" "manimpango"
|
|
substituteInPlace emote/config.py --replace 'os.environ.get("SNAP")' "'$out/share/emote'"
|
|
substituteInPlace emote/picker.py --replace 'os.environ.get("SNAP_VERSION", "dev build")' "'$version'"
|
|
substituteInPlace snap/gui/emote.desktop --replace "Icon=\''${SNAP}/usr/share/icons/emote.svg" "Icon=emote.svg"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
wrapGAppsHook
|
|
gobject-introspection
|
|
];
|
|
|
|
buildInputs = [
|
|
atk
|
|
gdk-pixbuf
|
|
gtk3
|
|
keybinder3
|
|
pango
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
python3Packages.manimpango
|
|
python3Packages.pygobject3
|
|
];
|
|
|
|
postInstall = ''
|
|
install -D snap/gui/emote.desktop $out/share/applications/emote.desktop
|
|
install -D snap/gui/emote.svg $out/share/pixmaps/emote.svg
|
|
install -D -t $out/share/emote/static static/{NotoColorEmoji.ttf,emojis.csv,logo.svg,style.css}
|
|
'';
|
|
|
|
dontWrapGApps = true;
|
|
preFixup = ''
|
|
makeWrapperArgs+=(
|
|
"''${gappsWrapperArgs[@]}"
|
|
--prefix PATH : ${lib.makeBinPath [ xdotool ]}
|
|
)
|
|
'';
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Modern emoji picker for Linux";
|
|
homepage = "https://github.com/tom-james-watson/emote";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ emilytrau SuperSandro2000 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|