Unverified Commit f15730ef authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

aasvg-rs: init at 1.0.0 (#488607)

parents 2bcb7816 a906f785
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
{
  lib,
  rustPlatform,
  fetchCrate,
}:

rustPlatform.buildRustPackage (finalAttrs: {
  pname = "aasvg-rs";
  version = "1.0.0";

  src = fetchCrate {
    inherit (finalAttrs) version;
    pname = "aasvg-cli";
    hash = "sha256-0qGCXHSCTg2yXLxREOfY7lOA3ZQCNFvST6GTBIsG/f4=";
  };

  cargoHash = "sha256-zl3IPKKG738cr1Au4Vw9SRstgOp57hM/JhPRNl0VsII=";

  meta = {
    description = "CLI tool to convert ASCII art diagrams to SVG";
    homepage = "https://github.com/bearcove/aasvg-rs";
    license = lib.licenses.bsd2;
    maintainers = with lib.maintainers; [ chillcicada ];
    mainProgram = "aasvg";
  };
})