2023-08-27 14:47:50 +00:00
|
|
|
{ lib, rustPlatform, fetchCrate }:
|
2021-09-11 20:55:35 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "textplots";
|
2023-08-30 17:44:59 +00:00
|
|
|
version = "0.8.2";
|
2021-09-11 20:55:35 +00:00
|
|
|
|
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname version;
|
2023-08-30 17:44:59 +00:00
|
|
|
hash = "sha256-NBUp5kFiODqoJrg/JBPhtaVsOikppqt2jbd3C3RQ7qg=";
|
2021-09-11 20:55:35 +00:00
|
|
|
};
|
|
|
|
|
2023-08-30 17:44:59 +00:00
|
|
|
cargoHash = "sha256-hHj3Da399gbRbgHgHcBE53HJusWoPbRA184tcCSJ4fc=";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|