bffbf4617a
Their keys are now not used directly. Instead, we go the standard route of mapping to the UUID in order to apply the rename procedure. This makes sure the manual override always does the correct thing, and also gives us more consistency overall.
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, glib, gettext }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-shell-extension-emoji-selector";
|
|
version = "19";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "maoschanz";
|
|
repo = "emoji-selector-for-gnome";
|
|
rev = version;
|
|
sha256 = "0x60pg5nl5d73av494dg29hyfml7fbf2d03wm053vx1q8a3pxbyb";
|
|
};
|
|
|
|
passthru = {
|
|
extensionUuid = "emoji-selector@maestroschan.fr";
|
|
extensionPortalSlug = "emoji-selector";
|
|
};
|
|
|
|
nativeBuildInputs = [ glib ];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
glib-compile-schemas "./emoji-selector@maestroschan.fr/schemas"
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/share/gnome-shell/extensions
|
|
cp -r "emoji-selector@maestroschan.fr" $out/share/gnome-shell/extensions
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description =
|
|
"GNOME Shell extension providing a searchable popup menu displaying most emojis";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ rawkode ];
|
|
homepage = "https://github.com/maoschanz/emoji-selector-for-gnome";
|
|
};
|
|
}
|