mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
f8c4a98e8e
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
24 lines
707 B
Nix
24 lines
707 B
Nix
{ lib, buildNimPackage, fetchFromGitLab, unicode-emoji }:
|
|
|
|
buildNimPackage (finalAttrs: {
|
|
pname = "emocli";
|
|
version = "1.0.0";
|
|
src = fetchFromGitLab {
|
|
owner = "AsbjornOlling";
|
|
repo = "emocli";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-yJu+8P446gzRFOi9/+TcN8AKL0jKHUxhOvi/HXNWL1A=";
|
|
};
|
|
nimFlags = [
|
|
"--maxLoopIterationsVM:1000000000"
|
|
];
|
|
env.EMOCLI_DATAFILE = "${unicode-emoji}/share/unicode/emoji/emoji-test.txt";
|
|
meta = {
|
|
homepage = "https://gitlab.com/AsbjornOlling/emocli";
|
|
description = "Emoji picker for your command line";
|
|
license = lib.licenses.eupl12;
|
|
maintainers = with lib.maintainers; [ asbjornolling ];
|
|
mainProgram = "emocli";
|
|
};
|
|
})
|