Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ reason, re, pastel, ... }:
2
3{
4 pname = "file-context-printer";
5
6 nativeBuildInputs = [
7 reason
8 ];
9
10 propagatedBuildInputs = [
11 re
12 pastel
13 ];
14
15 meta = {
16 description = "Utility for displaying snippets of files on the command line";
17 downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/file-context-printer";
18 homepage = "https://reason-native.com/docs/file-context-printer/";
19 };
20}