summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/reason-native/unicode.nix
blob: 663c02e49306b25c3bdfb35eac76220d89a0690f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
  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";
    homepage = "https://github.com/reasonml/reason-native";
    downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/unicode";
    license = lib.licenses.mit;
    maintainers = [ ];
  };
}