about summary refs log tree commit diff
path: root/pkgs/by-name/yo/youplot/package.nix
blob: b1fcb76795ad4fbdab8723fa9a9a80a29b6f6d06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "youplot";
  gemdir = ./.;

  exes = [ "uplot" ];

  passthru.updateScript = bundlerUpdateScript "youplot";

  meta = with lib; {
    description = "Command line tool that draws plots on the terminal";
    homepage    = "https://github.com/red-data-tools/YouPlot";
    mainProgram = "uplot";
    license     = licenses.mit;
    maintainers = with maintainers; [ purcell ];
    platforms   = platforms.unix;
  };
}