nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildDunePackage,
4 reason,
5 re,
6 pastel,
7 src,
8}:
9
10buildDunePackage {
11 inherit src;
12
13 pname = "frame";
14 version = "0.0.1-unstable-2024-05-07";
15
16 nativeBuildInputs = [
17 reason
18 ];
19
20 propagatedBuildInputs = [
21 pastel
22 re
23 ];
24
25 meta = {
26 description = "Reason Native text layout library";
27 downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/frame";
28 license = lib.licenses.mit;
29 maintainers = [ ];
30 };
31}