svg2pdf: 0.9.0 -> 0.9.1
Diff: https://github.com/typst/svg2pdf/compare/v0.9.0...v0.9.1 Changelog: https://github.com/typst/svg2pdf/releases/tag/v0.9.1
This commit is contained in:
parent
bec575a462
commit
4dc3fa27a5
1 changed files with 8 additions and 4 deletions
|
@ -5,16 +5,20 @@
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "svg2pdf";
|
pname = "svg2pdf";
|
||||||
version = "0.9.0";
|
version = "0.9.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "typst";
|
owner = "typst";
|
||||||
repo = "svg2pdf";
|
repo = "svg2pdf";
|
||||||
rev = "v${version}";
|
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; {
|
meta = with lib; {
|
||||||
description = "Convert SVG files to PDFs";
|
description = "Convert SVG files to PDFs";
|
||||||
|
|
Loading…
Reference in a new issue