nixpkgs/pkgs/tools/graphics/resvg/default.nix

25 lines
580 B
Nix
Raw Normal View History

2020-10-14 05:20:00 +01:00
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "resvg";
2021-03-13 12:27:50 +00:00
version = "0.14.0";
2020-10-14 05:20:00 +01:00
src = fetchFromGitHub {
owner = "RazrFalcon";
repo = pname;
rev = "v${version}";
2021-03-13 12:27:50 +00:00
sha256 = "sha256-fd97w6yd9ZX2k8Vq+Vh6jouufGdFE02ZV8mb+BtA3tk=";
2020-10-14 05:20:00 +01:00
};
2021-03-13 12:27:50 +00:00
cargoSha256 = "sha256-LlEYfjUINQW/YrhNp/Z+fdLQPcvrTjNFtDAk1gyAuj0=";
2020-10-14 05:20:00 +01:00
doCheck = false;
meta = with lib; {
description = "An SVG rendering library";
homepage = "https://github.com/RazrFalcon/resvg";
license = licenses.mpl20;
maintainers = [ maintainers.marsam ];
};
}