nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildDunePackage,
4 reason,
5 re,
6 pastel,
7 src,
8}:
9
10buildDunePackage {
11 inherit src;
12
13 pname = "file-context-printer";
14 version = "0.0.3-unstable-2024-05-07";
15
16 nativeBuildInputs = [
17 reason
18 ];
19
20 propagatedBuildInputs = [
21 re
22 pastel
23 ];
24
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 };
32}