bemoji: init at 0.3.0

Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>
Co-authored-by: éclairevoyant <848000+eclairevoyant@users.noreply.github.com>
Co-authored-by: Nikodem Rabuliński <nikodem@rabulinski.com>
This commit is contained in:
Laureηt 2023-10-18 19:28:55 +02:00
parent 028029876b
commit dee28096a4
No known key found for this signature in database

View file

@ -0,0 +1,32 @@
{ lib
, stdenvNoCC
, fetchFromGitHub
}:
stdenvNoCC.mkDerivation rec {
pname = "bemoji";
version = "0.3.0";
src = fetchFromGitHub {
owner = "marty-oehme";
repo = "bemoji";
rev = version;
hash = "sha256-XXNrUaS06UHF3cVfIfWjGF1sdPE709W2tFhfwTitzNs=";
};
strictDeps = true;
dontBuild = true;
postInstall = ''
install -Dm555 bemoji -t $out/bin
'';
meta = with lib; {
homepage = "https://github.com/marty-oehme/bemoji/";
description = "Emoji picker with support for bemenu/wofi/rofi/dmenu and wayland/X11";
license = licenses.mit;
mainProgram = "bemoji";
platforms = platforms.all;
maintainers = with maintainers; [ laurent-f1z1 ];
};
}