Unverified Commit 4cd8b4e2 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #226236 from marsam/update-svgbob

svgbob: 0.6.6 -> 0.7.0
parents c4c25583 97515a54
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -2,15 +2,15 @@

rustPlatform.buildRustPackage rec {
  pname = "svgbob";
  version = "0.6.6";
  version = "0.7.0";

  src = fetchCrate {
    inherit version;
    crateName = "svgbob_cli";
    sha256 = "sha256-NG5UbUv//03PVs5QoLVDkgA6Fc3SWKtbgIpcvcb7rW0=";
    sha256 = "sha256-iWcd+23/Ou7K2YUDf/MJx84LsVMXXqAkGNPs6B0RDqA=";
  };

  cargoSha256 = "sha256-CdPTtn0NTcEAQvLTh4vdG053oZNNMmbP5IxmMU4YGAw=";
  cargoHash = "sha256-YbbVv2ln01nJfCaopKCwvVN7cgrcuaRHNXGHf9j9XUY=";

  postInstall = ''
    mv $out/bin/svgbob_cli $out/bin/svgbob
@@ -19,6 +19,7 @@ rustPlatform.buildRustPackage rec {
  meta = with lib; {
    description = "Convert your ascii diagram scribbles into happy little SVG";
    homepage = "https://github.com/ivanceras/svgbob";
    changelog = "https://github.com/ivanceras/svgbob/raw/${version}/Changelog.md";
    license = licenses.asl20;
    maintainers = [ maintainers.marsam ];
  };