Merge pull request #137440 from figsoda/textplots

authored by Sandro and committed by GitHub 3020eb85 5d735134

+22
+20
pkgs/tools/graphics/textplots/default.nix
···
··· 1 + { fetchCrate, lib, rustPlatform }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "textplots"; 5 + version = "0.8.0"; 6 + 7 + src = fetchCrate { 8 + inherit pname version; 9 + sha256 = "07lxnvg8g24r1j6h07w91j5lp0azngmb76lagk55y28br0y70qr4"; 10 + }; 11 + 12 + cargoSha256 = "19xb1ann3bqx26nhjjvcwqdsvzg7lflg9fdrnlx05ndd2ip44flz"; 13 + 14 + meta = with lib; { 15 + description = "Terminal plotting written in Rust"; 16 + homepage = "https://github.com/loony-bean/textplots-rs"; 17 + license = licenses.mit; 18 + maintainers = with maintainers; [ figsoda ]; 19 + }; 20 + }
+2
pkgs/top-level/all-packages.nix
··· 27920 27921 terminal-notifier = callPackage ../applications/misc/terminal-notifier {}; 27922 27923 texture-synthesis = callPackage ../tools/graphics/texture-synthesis { }; 27924 27925 tty-solitaire = callPackage ../applications/misc/tty-solitaire { };
··· 27920 27921 terminal-notifier = callPackage ../applications/misc/terminal-notifier {}; 27922 27923 + textplots = callPackage ../tools/graphics/textplots { }; 27924 + 27925 texture-synthesis = callPackage ../tools/graphics/texture-synthesis { }; 27926 27927 tty-solitaire = callPackage ../applications/misc/tty-solitaire { };