1{
2 lib,
3 buildDunePackage,
4 reason,
5 src,
6}:
7
8buildDunePackage {
9 inherit src;
10
11 pname = "unicode";
12 version = "0.0.0-unstable-2024-05-07";
13
14 nativeBuildInputs = [
15 reason
16 ];
17
18 meta = {
19 description = "Easy to use and well documented Unicode symbols";
20 downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/unicode";
21 license = lib.licenses.mit;
22 maintainers = [ ];
23 };
24}