1{
2 lib,
3 bundlerApp,
4 bundlerUpdateScript,
5}:
6
7bundlerApp {
8 pname = "youplot";
9 gemdir = ./.;
10
11 exes = [ "uplot" ];
12
13 passthru.updateScript = bundlerUpdateScript "youplot";
14
15 meta = with lib; {
16 description = "Command line tool that draws plots on the terminal";
17 homepage = "https://github.com/red-data-tools/YouPlot";
18 mainProgram = "uplot";
19 license = licenses.mit;
20 maintainers = with maintainers; [ purcell ];
21 platforms = platforms.unix;
22 };
23}