mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
Merge pull request #137440 from figsoda/textplots
This commit is contained in:
commit
3020eb851a
20
pkgs/tools/graphics/textplots/default.nix
Normal file
20
pkgs/tools/graphics/textplots/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{ fetchCrate, lib, rustPlatform }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "textplots";
|
||||||
|
version = "0.8.0";
|
||||||
|
|
||||||
|
src = fetchCrate {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "07lxnvg8g24r1j6h07w91j5lp0azngmb76lagk55y28br0y70qr4";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "19xb1ann3bqx26nhjjvcwqdsvzg7lflg9fdrnlx05ndd2ip44flz";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Terminal plotting written in Rust";
|
||||||
|
homepage = "https://github.com/loony-bean/textplots-rs";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ figsoda ];
|
||||||
|
};
|
||||||
|
}
|
@ -27920,6 +27920,8 @@ with pkgs;
|
|||||||
|
|
||||||
terminal-notifier = callPackage ../applications/misc/terminal-notifier {};
|
terminal-notifier = callPackage ../applications/misc/terminal-notifier {};
|
||||||
|
|
||||||
|
textplots = callPackage ../tools/graphics/textplots { };
|
||||||
|
|
||||||
texture-synthesis = callPackage ../tools/graphics/texture-synthesis { };
|
texture-synthesis = callPackage ../tools/graphics/texture-synthesis { };
|
||||||
|
|
||||||
tty-solitaire = callPackage ../applications/misc/tty-solitaire { };
|
tty-solitaire = callPackage ../applications/misc/tty-solitaire { };
|
||||||
|
Loading…
Reference in New Issue
Block a user