2021-07-15 05:20:00 +01:00
|
|
|
{ lib, rustPlatform, fetchCrate }:
|
2019-06-12 02:00:00 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "svgbob";
|
2022-02-20 15:11:41 +00:00
|
|
|
version = "0.6.4";
|
2019-06-12 02:00:00 +01:00
|
|
|
|
2021-07-15 05:20:00 +01:00
|
|
|
src = fetchCrate {
|
|
|
|
inherit version;
|
|
|
|
crateName = "svgbob_cli";
|
2022-02-20 15:11:41 +00:00
|
|
|
sha256 = "sha256-IPv6ZHgFJdH0hH9y1bQ+BHCS9EjX0Et2yuKwiYUW9gs=";
|
2019-06-12 02:00:00 +01:00
|
|
|
};
|
|
|
|
|
2022-02-20 15:11:41 +00:00
|
|
|
cargoSha256 = "sha256-mSeVrBQIoJ/uvxzLj15sreQHU2PAa3Xihdok89XpXeQ=";
|
2019-06-12 02:00:00 +01: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 ];
|
|
|
|
};
|
|
|
|
}
|