Add patch for upstreamed uni package

This commit is contained in:
Charlotte Van Petegem 2022-05-10 09:59:02 +02:00
parent e7964d5b39
commit 2a93760a40
No known key found for this signature in database
GPG key ID: 019E764B7184435A
3 changed files with 54 additions and 25 deletions

View file

@ -1,24 +0,0 @@
{ 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 ];
};
}