3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/graphics/resvg/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
644 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchFromGitHub }:
2020-10-14 05:20:00 +01:00
rustPlatform.buildRustPackage rec {
pname = "resvg";
version = "0.23.0";
2020-10-14 05:20:00 +01:00
src = fetchFromGitHub {
owner = "RazrFalcon";
repo = pname;
rev = "v${version}";
sha256 = "sha256-GiRLunAfDBqJtaq2ccQ3tvPDfmTg5OklkI6apAiMYL0=";
2020-10-14 05:20:00 +01:00
};
cargoSha256 = "sha256-rFhmR3H2u5LBBUCK5mCfHvIevFjbIe+CQLS535mJ53w=";
2020-10-14 05:20:00 +01:00
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 05:20:00 +01:00
license = licenses.mpl20;
maintainers = [ maintainers.marsam ];
};
}