Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 35 lines 782 B view raw
1{ 2 lib, 3 stdenvNoCC, 4 fetchFromGitHub, 5}: 6stdenvNoCC.mkDerivation { 7 pname = "bemoji"; 8 version = "0.4.0-unstable-2024-04-28"; 9 10 src = fetchFromGitHub { 11 owner = "marty-oehme"; 12 repo = "bemoji"; 13 rev = "1b5e9c1284ede59d771bfd43780cc8f6f7446f38"; 14 hash = "sha256-WD4oFq0NRZ0Dt/YamutM7iWz3fMRxCqwgRn/rcUsTIw="; 15 }; 16 17 strictDeps = true; 18 dontBuild = true; 19 20 postInstall = '' 21 install -Dm555 bemoji -t $out/bin 22 ''; 23 24 meta = with lib; { 25 homepage = "https://github.com/marty-oehme/bemoji/"; 26 description = "Emoji picker with support for bemenu/wofi/rofi/dmenu and wayland/X11"; 27 license = licenses.mit; 28 mainProgram = "bemoji"; 29 platforms = platforms.all; 30 maintainers = with maintainers; [ 31 laurent-f1z1 32 MrSom3body 33 ]; 34 }; 35}