2021-03-13 12:28:00 +00:00
|
|
|
{ stdenv, lib, rustPlatform, fetchFromGitHub, libiconv }:
|
2020-10-14 04:20:00 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "resvg";
|
2021-09-15 21:10:57 +00:00
|
|
|
version = "0.18.0";
|
2020-10-14 04:20:00 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "RazrFalcon";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-09-15 21:10:57 +00:00
|
|
|
sha256 = "sha256-/r1rTU+te8pKKiPGCHJTTBkg9RZ/N1yFTlaDAhWWxjs=";
|
2020-10-14 04:20:00 +00:00
|
|
|
};
|
|
|
|
|
2021-09-15 21:10:57 +00:00
|
|
|
cargoSha256 = "sha256-pHZRKXZo5fyyXjgNTDBZjRiMDOaoCfFUSl53yE2t210=";
|
2020-10-14 04:20:00 +00:00
|
|
|
|
2021-03-13 12:28:00 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
|
|
|
|
|
2020-10-14 04:20:00 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "An SVG rendering library";
|
|
|
|
homepage = "https://github.com/RazrFalcon/resvg";
|
2021-03-13 12:28:00 +00:00
|
|
|
changelog = "https://github.com/RazrFalcon/resvg/raw/v${version}/CHANGELOG.md";
|
2020-10-14 04:20:00 +00:00
|
|
|
license = licenses.mpl20;
|
|
|
|
maintainers = [ maintainers.marsam ];
|
|
|
|
};
|
|
|
|
}
|