biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / graphics / svgcleaner / default.nix
blob87e7bafa2e5f480fbce343f9c6cf3220b6d06abe
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "SVGCleaner";
8   version = "unstable-2021-08-30";
10   src = fetchFromGitHub {
11     owner = "RazrFalcon";
12     repo = pname;
13     rev = "575eac74400a5ac45c912b144f0c002aa4a0135f";
14     sha256 = "sha256-pRDRRVb8Lyna8X/PEjS9tS5dbG4g7vyMCU5AqPlpxec=";
15   };
17   cargoHash = "sha256-SZWmJGiCc/FevxMWJpa8xKVz/rbll52oNbFtqPpz74g=";
19   meta = with lib; {
20     description = "Clean and optimize SVG files from unnecessary data";
21     homepage = "https://github.com/RazrFalcon/SVGCleaner";
22     changelog = "https://github.com/RazrFalcon/svgcleaner/releases";
23     license = licenses.gpl2Plus;
24     maintainers = with maintainers; [ yuu ];
25     mainProgram = "svgcleaner";
26   };