Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
29 lines
731 B
Nix
29 lines
731 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage {
|
|
pname = "SVGCleaner";
|
|
version = "unstable-2021-08-30";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RazrFalcon";
|
|
repo = "SVGCleaner";
|
|
rev = "575eac74400a5ac45c912b144f0c002aa4a0135f";
|
|
sha256 = "sha256-pRDRRVb8Lyna8X/PEjS9tS5dbG4g7vyMCU5AqPlpxec=";
|
|
};
|
|
|
|
cargoHash = "sha256-5HRhKW1VbecUdc+iad3hOKsR82JI2Pgtio3z/8pqZIg=";
|
|
|
|
meta = with lib; {
|
|
description = "Clean and optimize SVG files from unnecessary data";
|
|
homepage = "https://github.com/RazrFalcon/SVGCleaner";
|
|
changelog = "https://github.com/RazrFalcon/svgcleaner/releases";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ ];
|
|
mainProgram = "svgcleaner";
|
|
};
|
|
}
|