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

buildDunePackage {
  inherit src;

  pname = "utf8";
  version = "0.1.0-unstable-2024-05-07";

  nativeBuildInputs = [
    reason
  ];

  meta = {
    description = "Utf8 logic with minimal dependencies";
    downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/utf8";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ ];
  };
}