forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / development / ocaml-modules / reason-native / pastel-console.nix
blob82a3ff55057f076e3a4597fb52eb6f9447f143f9
1 { lib, buildDunePackage, reason, console, pastel, src }:
3 buildDunePackage {
4   inherit src;
6   pname = "pastel-console";
7   version = "0.0.0-unstable-2024-05-07";
9   nativeBuildInputs = [
10     reason
11   ];
13   propagatedBuildInputs = [
14     console
15     pastel
16   ];
18   meta = {
19     description = "Small library for pretty coloring to Console output";
20     downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/pastel-console";
21     homepage = "https://reason-native.com/docs/pastel/console";
22     license = lib.licenses.mit;
23     maintainers = [ ];
24   };