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

22 lines
568 B
Nix
Raw Normal View History

2021-07-15 06:20:00 +02:00
{ lib, rustPlatform, fetchCrate }:
2019-06-12 03:00:00 +02:00
rustPlatform.buildRustPackage rec {
pname = "svgbob";
2021-07-15 06:20:00 +02:00
version = "0.5.3";
2019-06-12 03:00:00 +02:00
2021-07-15 06:20:00 +02:00
src = fetchCrate {
inherit version;
crateName = "svgbob_cli";
sha256 = "1gi8h4wzpi477y1gwi4708pn2kr65934a4dmphbhwppxbw447qiw";
2019-06-12 03:00:00 +02:00
};
2021-07-15 06:20:00 +02:00
cargoSha256 = "1x8phpllwm12igaachghwq6wgxl7nl8bhh7xybfrmn447viwxhq2";
2019-06-12 03:00:00 +02:00
meta = with lib; {
description = "Convert your ascii diagram scribbles into happy little SVG";
homepage = "https://github.com/ivanceras/svgbob";
license = licenses.asl20;
maintainers = [ maintainers.marsam ];
};
}