2024-02-07 01:22:34 +00:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
|
|
|
|
|
|
|
bundlerApp {
|
|
|
|
pname = "youplot";
|
|
|
|
gemdir = ./.;
|
|
|
|
|
|
|
|
exes = [ "uplot" ];
|
|
|
|
|
|
|
|
passthru.updateScript = bundlerUpdateScript "youplot";
|
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Command line tool that draws plots on the terminal";
|
2024-02-07 01:22:34 +00:00
|
|
|
homepage = "https://github.com/red-data-tools/YouPlot";
|
|
|
|
mainProgram = "uplot";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ purcell ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|