about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/reason-native/unicode-config.nix
blob: 1b80ae2a71fd39752f1a70298c6be3b6616560d2 (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-config";
  version = "0.0.0-unstable-2024-05-07";

  nativeBuildInputs = [
    reason
  ];

  meta = {
    description = "Configuration used to generate the @reason-native/unicode library";
    downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/unicode-config";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ ];
  };
}