nimPackages.unicodeplus: do check

This commit is contained in:
Emery Hemingway 2023-07-18 10:37:06 +01:00
parent 6afa4f43be
commit cf0f865c71

View File

@ -1,8 +1,19 @@
{ fetchFromGitHub }:
{ lib, buildNimPackage, fetchFromGitHub, segmentation }:
fetchFromGitHub {
owner = "nitely";
repo = "nim-unicodeplus";
rev = "v0.8.0";
sha256 = "181wzwivfgplkqn5r4crhnaqgsza7x6fi23i86djb2dxvm7v6qxk";
}
buildNimPackage (finalAttrs: {
pname = "unicodeplus";
version = "0.8.0";
src = fetchFromGitHub {
owner = "nitely";
repo = "nim-unicodeplus";
rev = "v${finalAttrs.version}";
sha256 = "181wzwivfgplkqn5r4crhnaqgsza7x6fi23i86djb2dxvm7v6qxk";
};
propagatedBuildInputs = [ segmentation ];
meta = finalAttrs.src.meta // {
description = "Common unicode operations";
homepage = "https://github.com/nitely/nim-unicodeplus";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ehmry ];
};
})