about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/nim-packages/unicodeplus/default.nix
blob: 8efb1fee7ec051edd13b0a3a640df1762e089a7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, buildNimPackage, fetchFromGitHub, segmentation }:

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 ];
  };
})