Commit 4dc3fa27 authored by figsoda's avatar figsoda
Browse files
parent bec575a4
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -5,16 +5,20 @@

rustPlatform.buildRustPackage rec {
  pname = "svg2pdf";
  version = "0.9.0";
  version = "0.9.1";

  src = fetchFromGitHub {
    owner = "typst";
    repo = "svg2pdf";
    rev = "v${version}";
    hash = "sha256-Xy1ID2/M3v9/ZEo8fWEDlJ8+cmgAMdHhs27xDfe8IYQ=";
    hash = "sha256-mWj9zWxqcJ+5VFYSaeNLxClWdOGd34JboZBwT8E75Ew=";
  };
  cargoHash = "sha256-l3671zvqSM4CY7lOXOur0Q6PBDVf6jXnhZ/8kADWQz4=";
  buildFeatures = [ "cli" ];

  cargoHash = "sha256-zP448dFnkoPca/GJA2kT5ht1fVGkWN0XdaKEePJaloQ=";

  cargoBuildFlags = [
    "-p=svg2pdf-cli"
  ];

  meta = with lib; {
    description = "Convert SVG files to PDFs";