about summary refs log tree commit diff
path: root/pkgs/by-name/yo/youplot/package.nix
diff options
context:
space:
mode:
authorSteve Purcell <steve@sanityinc.com>2024-01-22 16:48:49 +0000
committerSteve Purcell <steve@sanityinc.com>2024-01-22 17:37:39 +0000
commitdedef7343e3b5cacfc73d8dd85272a364ada639f (patch)
treef7c4666d845b3f4d691f516f0e514362da8a842f /pkgs/by-name/yo/youplot/package.nix
parent37b7d6075ea3ccfdc92664923a56a521519eb104 (diff)
downloadnixlib-dedef7343e3b5cacfc73d8dd85272a364ada639f.tar
nixlib-dedef7343e3b5cacfc73d8dd85272a364ada639f.tar.gz
nixlib-dedef7343e3b5cacfc73d8dd85272a364ada639f.tar.bz2
nixlib-dedef7343e3b5cacfc73d8dd85272a364ada639f.tar.lz
nixlib-dedef7343e3b5cacfc73d8dd85272a364ada639f.tar.xz
nixlib-dedef7343e3b5cacfc73d8dd85272a364ada639f.tar.zst
nixlib-dedef7343e3b5cacfc73d8dd85272a364ada639f.zip
youplot: init at 0.4.5
Diffstat (limited to 'pkgs/by-name/yo/youplot/package.nix')
-rw-r--r--pkgs/by-name/yo/youplot/package.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/by-name/yo/youplot/package.nix b/pkgs/by-name/yo/youplot/package.nix
new file mode 100644
index 000000000000..d858c8764e83
--- /dev/null
+++ b/pkgs/by-name/yo/youplot/package.nix
@@ -0,0 +1,19 @@
+{ lib, bundlerApp, bundlerUpdateScript }:
+
+bundlerApp {
+  pname = "youplot";
+  gemdir = ./.;
+
+  exes = [ "uplot" ];
+
+  passthru.updateScript = bundlerUpdateScript "youplot";
+
+  meta = with lib; {
+    description = "A 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;
+  };
+}