blob: a7d98caf20131a2dd54bf7e6b6a1d373bb15e839 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
{ lib
, python3
, fetchFromGitHub
, desktop-file-utils
, glib
, gobject-introspection
, meson
, ninja
, wrapGAppsHook4
, libadwaita
, xdotool
, wl-clipboard
}:
python3.pkgs.buildPythonApplication rec {
pname = "smile";
version = "2.9.5";
pyproject = false; # Builds with meson
src = fetchFromGitHub {
owner = "mijorus";
repo = "smile";
rev = version;
hash = "sha256-WwkwJXRnIvBS0cdcmJhErZLe0wwvarUdE7rpx7qcd2E=";
};
nativeBuildInputs = [
desktop-file-utils # for update-desktop-database
glib # for glib-compile-resources
gobject-introspection
meson
ninja
wrapGAppsHook4
];
buildInputs = [
libadwaita
];
dependencies = with python3.pkgs; [
dbus-python
manimpango
pygobject3
];
dontWrapGApps = true;
preFixup = ''
makeWrapperArgs+=(
"''${gappsWrapperArgs[@]}"
--prefix PATH : ${lib.makeBinPath [
xdotool
wl-clipboard
]}
)
'';
meta = {
changelog = "https://smile.mijorus.it/changelog";
description = "Emoji picker for linux, with custom tags support and localization";
downloadPage = "https://github.com/mijorus/smile";
homepage = "https://mijorus.it/projects/smile/";
license = lib.licenses.gpl3Plus;
mainProgram = "smile";
maintainers = with lib.maintainers; [ koppor aleksana ];
};
}
|