commit
6846de3bbf
4 changed files with 73 additions and 0 deletions
2
pkgs/by-name/yo/youplot/Gemfile
Normal file
2
pkgs/by-name/yo/youplot/Gemfile
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
source 'https://rubygems.org'
|
||||||
|
gem 'youplot'
|
18
pkgs/by-name/yo/youplot/Gemfile.lock
Normal file
18
pkgs/by-name/yo/youplot/Gemfile.lock
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
GEM
|
||||||
|
remote: https://rubygems.org/
|
||||||
|
specs:
|
||||||
|
enumerable-statistics (2.0.7)
|
||||||
|
unicode_plot (0.0.5)
|
||||||
|
enumerable-statistics (>= 2.0.1)
|
||||||
|
youplot (0.4.5)
|
||||||
|
unicode_plot (>= 0.0.5)
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
arm64-darwin-22
|
||||||
|
ruby
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
youplot
|
||||||
|
|
||||||
|
BUNDLED WITH
|
||||||
|
2.5.3
|
34
pkgs/by-name/yo/youplot/gemset.nix
Normal file
34
pkgs/by-name/yo/youplot/gemset.nix
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
enumerable-statistics = {
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0dlnfncz0lbyczakgdlys44pksj6h447npj665xk41b36y0lbf7f";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "2.0.7";
|
||||||
|
};
|
||||||
|
unicode_plot = {
|
||||||
|
dependencies = ["enumerable-statistics"];
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0fzpg1zizf19xgfzqw6lmb38xir423wwxb2mjsb3nym6phvn5kli";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "0.0.5";
|
||||||
|
};
|
||||||
|
youplot = {
|
||||||
|
dependencies = ["unicode_plot"];
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0imy65wjkgdkpqfympbz8lp2ih866538vk55fwz9a909ib9sbdri";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "0.4.5";
|
||||||
|
};
|
||||||
|
}
|
19
pkgs/by-name/yo/youplot/package.nix
Normal file
19
pkgs/by-name/yo/youplot/package.nix
Normal file
|
@ -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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue