nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / development / ocaml-modules / reason-native / pastel-console.nix
blob43df6e38116269858a6b38e1916766bdaa438b45
2   lib,
3   buildDunePackage,
4   reason,
5   console,
6   pastel,
7   src,
8 }:
10 buildDunePackage {
11   inherit src;
13   pname = "pastel-console";
14   version = "0.0.0-unstable-2024-05-07";
16   nativeBuildInputs = [
17     reason
18   ];
20   propagatedBuildInputs = [
21     console
22     pastel
23   ];
25   meta = {
26     description = "Small library for pretty coloring to Console output";
27     downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/pastel-console";
28     homepage = "https://reason-native.com/docs/pastel/console";
29     license = lib.licenses.mit;
30     maintainers = [ ];
31   };