2024-07-01 15:47:52 +00:00
|
|
|
{ lib, buildDunePackage, reason, re, pastel, src }:
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
inherit src;
|
2021-06-28 23:13:55 +00:00
|
|
|
|
|
|
|
pname = "file-context-printer";
|
2024-07-01 15:47:52 +00:00
|
|
|
version = "0.0.3-unstable-2024-05-07";
|
2021-06-28 23:13:55 +00:00
|
|
|
|
2022-03-05 16:20:37 +00:00
|
|
|
nativeBuildInputs = [
|
2021-06-28 23:13:55 +00:00
|
|
|
reason
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
re
|
|
|
|
pastel
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Utility for displaying snippets of files on the command line";
|
|
|
|
downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/file-context-printer";
|
|
|
|
homepage = "https://reason-native.com/docs/file-context-printer/";
|
2024-07-01 15:47:52 +00:00
|
|
|
license = lib.licenses.mit;
|
2024-07-31 10:19:44 +00:00
|
|
|
maintainers = [ ];
|
2021-06-28 23:13:55 +00:00
|
|
|
};
|
|
|
|
}
|