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

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

23 lines
559 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchCrate }:
2021-09-11 23:55:35 +03:00
rustPlatform.buildRustPackage rec {
pname = "textplots";
version = "0.8.4";
2021-09-11 23:55:35 +03:00
src = fetchCrate {
inherit pname version;
hash = "sha256-DtDxD3b8idYOBcHKkLbOy6NUU0bjWzDySGoW8uOT4xc=";
2021-09-11 23:55:35 +03:00
};
cargoHash = "sha256-tXqonC4qawS6eu9dPt/6/TVYCjTroG+9XikmYQHCLdA=";
buildFeatures = [ "tool" ];
2021-09-11 23:55:35 +03: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 ];
};
}