mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
24 lines
590 B
Nix
24 lines
590 B
Nix
{ lib, rustPlatform, fetchCrate }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "textplots";
|
|
version = "0.8.5";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-83EAe6O8ETsuGJ5MK6kt68OnJL+r+BAYkFzvzlxHyp4=";
|
|
};
|
|
|
|
cargoHash = "sha256-O47b00PGRXTWWxywitS2V15gXahzgjNvFKUvE+VMXaM=";
|
|
|
|
buildFeatures = [ "tool" ];
|
|
|
|
meta = with lib; {
|
|
description = "Terminal plotting written in Rust";
|
|
homepage = "https://github.com/loony-bean/textplots-rs";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
mainProgram = "textplots";
|
|
};
|
|
}
|