base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / yo / youplot / package.nix
blobb1fcb76795ad4fbdab8723fa9a9a80a29b6f6d06
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "youplot";
5   gemdir = ./.;
7   exes = [ "uplot" ];
9   passthru.updateScript = bundlerUpdateScript "youplot";
11   meta = with lib; {
12     description = "Command line tool that draws plots on the terminal";
13     homepage    = "https://github.com/red-data-tools/YouPlot";
14     mainProgram = "uplot";
15     license     = licenses.mit;
16     maintainers = with maintainers; [ purcell ];
17     platforms   = platforms.unix;
18   };