mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 09:17:42 +00:00
Merge pull request #284708 from dotlambda/smile-init
smile: init at 2.9.0
This commit is contained in:
commit
e0e2c98980
68
pkgs/by-name/sm/smile/package.nix
Normal file
68
pkgs/by-name/sm/smile/package.nix
Normal file
@ -0,0 +1,68 @@
|
||||
{ lib
|
||||
, python3
|
||||
, fetchFromGitHub
|
||||
, desktop-file-utils
|
||||
, glib
|
||||
, gobject-introspection
|
||||
, gtk4
|
||||
, meson
|
||||
, ninja
|
||||
, wrapGAppsHook4
|
||||
, libadwaita
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "smile";
|
||||
version = "2.9.0";
|
||||
format = "other";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mijorus";
|
||||
repo = "smile";
|
||||
rev = version;
|
||||
hash = "sha256-tXbRel+rtaE2zPO8NOc4X+Ktk4PdRHBMtpsGLbvuHZk=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs build-aux/meson/postinstall.py
|
||||
|
||||
substituteInPlace build-aux/meson/postinstall.py \
|
||||
--replace-fail gtk-update-icon-cache gtk4-update-icon-cache
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
desktop-file-utils # for update-desktop-database
|
||||
glib # for glib-compile-resources
|
||||
gobject-introspection
|
||||
gtk4 # for gtk4-update-icon-cache
|
||||
meson
|
||||
ninja
|
||||
wrapGAppsHook4
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libadwaita
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
dbus-python
|
||||
manimpango
|
||||
pygobject3
|
||||
];
|
||||
|
||||
dontWrapGApps = true;
|
||||
|
||||
preFixup = ''
|
||||
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
||||
'';
|
||||
|
||||
meta = {
|
||||
changelog = "https://smile.mijorus.it/changelog";
|
||||
description = "An 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user