nimPackages.unicodeplus: do check
This commit is contained in:
parent
6afa4f43be
commit
cf0f865c71
1 changed files with 18 additions and 7 deletions
|
@ -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 ];
|
||||
};
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue