evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / reason-native / file-context-printer.nix
blob8cfd60d144bf3ca35dcb5d868e3bbdf1e3260cdc
1 { lib, buildDunePackage, reason, re, pastel, src }:
3 buildDunePackage {
4   inherit src;
6   pname = "file-context-printer";
7   version = "0.0.3-unstable-2024-05-07";
9   nativeBuildInputs = [
10     reason
11   ];
13   propagatedBuildInputs = [
14     re
15     pastel
16   ];
18   meta = {
19     description = "Utility for displaying snippets of files on the command line";
20     downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/file-context-printer";
21     homepage = "https://reason-native.com/docs/file-context-printer/";
22     license = lib.licenses.mit;
23     maintainers = [ ];
24   };