Use uni instead of custom emoji generation using gemoji

This commit is contained in:
Charlotte Van Petegem 2022-05-09 17:25:30 +02:00
parent 452255b5cf
commit f27f569187
No known key found for this signature in database
GPG key ID: 019E764B7184435A
4 changed files with 27 additions and 28 deletions

24
packages/uni/default.nix Normal file
View file

@ -0,0 +1,24 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "uni";
version = "2.4.0";
src = fetchFromGitHub {
owner = "arp242";
repo = "uni";
rev = "v${version}";
sha256 = "ZBVUrS1/jUO0iLbK6P5ACw1vS5QPbSMkG9ZTdKrb8eo=";
};
vendorSha256 = "+gRESx8KCwfxCztY/68UO8KV+bJmjq3gbsrCFHBZyEI=";
doCheck = false;
meta = with lib; {
homepage = "https://github.com/arp242/uni";
description = "Query the Unicode database from the commandline, with good support for emojis";
license = licenses.mit;
maintainers = with maintainers; [ chvp ];
};
}