nixpkgs/pkgs/tools/graphics/textplots/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
528 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchCrate }:
2021-09-11 20:55:35 +00:00
rustPlatform.buildRustPackage rec {
pname = "textplots";
version = "0.8.3";
2021-09-11 20:55:35 +00:00
src = fetchCrate {
inherit pname version;
hash = "sha256-rYUo8A5jasGQb9CjW5u5kM7PIocq353R6v+Z7OhzVUg=";
2021-09-11 20:55:35 +00:00
};
cargoHash = "sha256-1Z+Og3n9/LUzfBoWNXjvNfuQByEq3vtXhGzi6X961w0=";
2021-09-11 20:55:35 +00:00
meta = with lib; {
description = "Terminal plotting written in Rust";
homepage = "https://github.com/loony-bean/textplots-rs";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}