nixpkgs/pkgs/development/ocaml-modules/reason-native/pastel-console.nix
Ulrik Strid a13cdfe520 ocamlPackages tree-wide: Move buildInputs that should be nativeBuildInputs
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
2022-02-24 14:39:27 +01:00

21 lines
414 B
Nix

{ reason, console, pastel, ... }:
{
pname = "pastel-console";
nativeBuildInputs = [
reason
];
propagatedBuildInputs = [
console
pastel
];
meta = {
description = "Small library for pretty coloring to Console output";
downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/pastel-console";
homepage = "https://reason-native.com/docs/pastel/console";
};
}