nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildDunePackage,
4 reason,
5 src,
6}:
7
8buildDunePackage {
9 inherit src;
10
11 pname = "unicode-config";
12 version = "0.0.0-unstable-2024-05-07";
13
14 nativeBuildInputs = [
15 reason
16 ];
17
18 meta = {
19 description = "Configuration used to generate the @reason-native/unicode library";
20 downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/unicode-config";
21 license = lib.licenses.mit;
22 maintainers = [ ];
23 };
24}