blob: 6b9a8c6f32b5ce143e631ea27dc967032967b884 (
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-config";
version = "0.0.0-unstable-2024-05-07";
nativeBuildInputs = [
reason
];
meta = {
description = "Configuration used to generate the @reason-native/unicode library";
homepage = "https://github.com/reasonml/reason-native";
downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/unicode-config";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|