3
0
Fork 0
forked from mirrors/nixpkgs
figsoda 2023-11-29 09:48:35 -05:00
parent bec575a462
commit 4dc3fa27a5

View file

@ -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";