mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
ef1e57456f
Diff: https://github.com/RazrFalcon/resvg/compare/v0.34.1...v0.35.0 Changelog: https://github.com/RazrFalcon/resvg/raw/v0.35.0/CHANGELOG.md
34 lines
816 B
Nix
34 lines
816 B
Nix
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "resvg";
|
|
version = "0.35.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RazrFalcon";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-iZY0t8GssM4doPnPiI+FdAdjmfXDxSUT7K9YUHBs8rQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-F7XeBto+vqfhucG7fygRkQWTQe7iwUuVyPTzdyXI7Lc=";
|
|
|
|
cargoBuildFlags = [
|
|
"--package=resvg"
|
|
"--package=resvg-capi"
|
|
"--package=usvg"
|
|
];
|
|
|
|
postInstall = ''
|
|
install -Dm644 -t $out/include crates/c-api/*.h
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "An SVG rendering library";
|
|
homepage = "https://github.com/RazrFalcon/resvg";
|
|
changelog = "https://github.com/RazrFalcon/resvg/raw/v${version}/CHANGELOG.md";
|
|
license = licenses.mpl20;
|
|
maintainers = [ maintainers.marsam ];
|
|
};
|
|
}
|