Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / nim-packages / unicodeplus / default.nix
blob8efb1fee7ec051edd13b0a3a640df1762e089a7f
1 { lib, buildNimPackage, fetchFromGitHub, segmentation }:
3 buildNimPackage (finalAttrs: {
4   pname = "unicodeplus";
5   version = "0.8.0";
6   src = fetchFromGitHub {
7     owner = "nitely";
8     repo = "nim-unicodeplus";
9     rev = "v${finalAttrs.version}";
10     sha256 = "181wzwivfgplkqn5r4crhnaqgsza7x6fi23i86djb2dxvm7v6qxk";
11   };
12   propagatedBuildInputs = [ segmentation ];
13   meta = finalAttrs.src.meta // {
14     description = "Common unicode operations";
15     homepage = "https://github.com/nitely/nim-unicodeplus";
16     license = lib.licenses.mit;
17     maintainers = with lib.maintainers; [ ehmry ];
18   };