tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
textplots: init at 0.8.0
figsoda
4 years ago
3dde4fd3
a4156f2b
+22
2 changed files
expand all
collapse all
unified
split
pkgs
tools
graphics
textplots
default.nix
top-level
all-packages.nix
+20
pkgs/tools/graphics/textplots/default.nix
···
1
1
+
{ fetchCrate, lib, rustPlatform }:
2
2
+
3
3
+
rustPlatform.buildRustPackage rec {
4
4
+
pname = "textplots";
5
5
+
version = "0.8.0";
6
6
+
7
7
+
src = fetchCrate {
8
8
+
inherit pname version;
9
9
+
sha256 = "07lxnvg8g24r1j6h07w91j5lp0azngmb76lagk55y28br0y70qr4";
10
10
+
};
11
11
+
12
12
+
cargoSha256 = "19xb1ann3bqx26nhjjvcwqdsvzg7lflg9fdrnlx05ndd2ip44flz";
13
13
+
14
14
+
meta = with lib; {
15
15
+
description = "Terminal plotting written in Rust";
16
16
+
homepage = "https://github.com/loony-bean/textplots-rs";
17
17
+
license = licenses.mit;
18
18
+
maintainers = with maintainers; [ figsoda ];
19
19
+
};
20
20
+
}
+2
pkgs/top-level/all-packages.nix
···
27917
27917
27918
27918
terminal-notifier = callPackage ../applications/misc/terminal-notifier {};
27919
27919
27920
27920
+
textplots = callPackage ../tools/graphics/textplots { };
27921
27921
+
27920
27922
texture-synthesis = callPackage ../tools/graphics/texture-synthesis { };
27921
27923
27922
27924
tty-solitaire = callPackage ../applications/misc/tty-solitaire { };