textplots: init at 0.8.0

figsoda 3dde4fd3 a4156f2b

+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
··· 27917 27918 terminal-notifier = callPackage ../applications/misc/terminal-notifier {}; 27919 27920 texture-synthesis = callPackage ../tools/graphics/texture-synthesis { }; 27921 27922 tty-solitaire = callPackage ../applications/misc/tty-solitaire { };
··· 27917 27918 terminal-notifier = callPackage ../applications/misc/terminal-notifier {}; 27919 27920 + textplots = callPackage ../tools/graphics/textplots { }; 27921 + 27922 texture-synthesis = callPackage ../tools/graphics/texture-synthesis { }; 27923 27924 tty-solitaire = callPackage ../applications/misc/tty-solitaire { };