bandwhich: 0.23.0 -> 0.23.1; move to by-name; nixfmt; useFetchCargoVendor (#356934)
[NixPkgs.git] / pkgs / development / ocaml-modules / reason-native / file-context-printer.nix
blob1bdad5de2d35d6f761469954776215a00f79185d
2   lib,
3   buildDunePackage,
4   reason,
5   re,
6   pastel,
7   src,
8 }:
10 buildDunePackage {
11   inherit src;
13   pname = "file-context-printer";
14   version = "0.0.3-unstable-2024-05-07";
16   nativeBuildInputs = [
17     reason
18   ];
20   propagatedBuildInputs = [
21     re
22     pastel
23   ];
25   meta = {
26     description = "Utility for displaying snippets of files on the command line";
27     downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/file-context-printer";
28     homepage = "https://reason-native.com/docs/file-context-printer/";
29     license = lib.licenses.mit;
30     maintainers = [ ];
31   };