mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 21:33:07 +00:00
a13cdfe520
To keep this for the future we also strictDeps where possible, including for janePackages, topkg, oasis and ocamlbuild. This makes some closures significantly smaller and makes cross compilation easier
21 lines
455 B
Nix
21 lines
455 B
Nix
{ reason, re, ... }:
|
|
|
|
{
|
|
pname = "pastel";
|
|
|
|
minimalOCamlVersion = "4.05";
|
|
|
|
nativeBuildInputs = [
|
|
reason
|
|
];
|
|
propagatedBuildInputs = [
|
|
re
|
|
];
|
|
|
|
meta = {
|
|
description = "A text formatting library that harnesses Reason JSX to provide intuitive terminal output. Like React but for CLI";
|
|
downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/pastel";
|
|
homepage = "https://reason-native.com/docs/pastel/";
|
|
};
|
|
}
|