nixpkgs/pkgs/development/nim-packages/unicodedb/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
548 B
Nix
Raw Normal View History

2023-07-18 09:03:02 +00:00
{ lib, buildNimPackage, fetchFromGitHub }:
2021-09-02 16:11:54 +00:00
2023-07-18 09:03:02 +00:00
buildNimPackage (finalAttrs: {
pname = "unicodedb";
version = "0.12.0";
src = fetchFromGitHub {
owner = "nitely";
repo = "nim-unicodedb";
rev = finalAttrs.version;
hash = "sha256-vtksdRTWH/Fjp1z8KSFGjgn1SRUxtUZwlOa+vMuB53A=";
};
meta = finalAttrs.src.meta // {
description = "Unicode Character Database (UCD, tr44) for Nim";
homepage = "https://github.com/nitely/nim-unicodedb";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ehmry ];
};
})