about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/reason-native/unicode.nix
blob: 544367424d0b7a91ce509792c3044cf7dd157d37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, buildDunePackage, reason, src }:

buildDunePackage {
  inherit src;

  pname = "unicode";
  version = "0.0.0-unstable-2024-05-07";

  nativeBuildInputs = [
    reason
  ];

  meta = {
    description = "Easy to use and well documented Unicode symbols";
    downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/unicode";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ ];
  };
}