crun: 1.8.3 -> 1.8.4
[NixPkgs.git] / pkgs / tools / graphics / svgbob / default.nix
blobab3724fb74608c3feeb4becfb54aedadda7ccf04
1 { lib, rustPlatform, fetchCrate }:
3 rustPlatform.buildRustPackage rec {
4   pname = "svgbob";
5   version = "0.6.6";
7   src = fetchCrate {
8     inherit version;
9     crateName = "svgbob_cli";
10     sha256 = "sha256-NG5UbUv//03PVs5QoLVDkgA6Fc3SWKtbgIpcvcb7rW0=";
11   };
13   cargoSha256 = "sha256-CdPTtn0NTcEAQvLTh4vdG053oZNNMmbP5IxmMU4YGAw=";
15   postInstall = ''
16     mv $out/bin/svgbob_cli $out/bin/svgbob
17   '';
19   meta = with lib; {
20     description = "Convert your ascii diagram scribbles into happy little SVG";
21     homepage = "https://github.com/ivanceras/svgbob";
22     license = licenses.asl20;
23     maintainers = [ maintainers.marsam ];
24   };