nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildDunePackage,
4 reason,
5 re,
6 src,
7}:
8
9buildDunePackage {
10 inherit src;
11
12 pname = "pastel";
13 version = "0.3.0-unstable-2024-05-07";
14
15 minimalOCamlVersion = "4.05";
16
17 nativeBuildInputs = [
18 reason
19 ];
20
21 propagatedBuildInputs = [
22 re
23 ];
24
25 meta = {
26 description = "Text formatting library that harnesses Reason JSX to provide intuitive terminal output. Like React but for CLI";
27 downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/pastel";
28 homepage = "https://reason-native.com/docs/pastel/";
29 license = lib.licenses.mit;
30 maintainers = [ ];
31 };
32}