svgcleaner: init at unstable-2021-08-30
This commit is contained in:
parent
59f3930d73
commit
7c345d1980
3 changed files with 28 additions and 1 deletions
26
pkgs/tools/graphics/svgcleaner/default.nix
Normal file
26
pkgs/tools/graphics/svgcleaner/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "SVGCleaner";
|
||||
version = "unstable-2021-08-30";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "RazrFalcon";
|
||||
repo = pname;
|
||||
rev = "575eac74400a5ac45c912b144f0c002aa4a0135f";
|
||||
sha256 = "sha256-pRDRRVb8Lyna8X/PEjS9tS5dbG4g7vyMCU5AqPlpxec=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-SZWmJGiCc/FevxMWJpa8xKVz/rbll52oNbFtqPpz74g=";
|
||||
|
||||
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.gpl2;
|
||||
maintainers = with maintainers; [ yuu ];
|
||||
};
|
||||
}
|
|
@ -1231,7 +1231,6 @@ mapAliases ({
|
|||
sudolikeaboss = throw "sudolikeaboss is no longer maintained by upstream"; # Added 2022-04-16
|
||||
sundials_3 = throw "sundials_3 was removed in 2020-02. outdated and no longer needed";
|
||||
surf-webkit2 = throw "'surf-webkit2' has been renamed to/replaced by 'surf'"; # Converted to throw 2022-02-22
|
||||
svgcleaner = throw "svgcleaner has been removed"; # Added 2021-11-17
|
||||
swec = throw "swec has been removed; broken and abandoned upstream"; # Added 2021-10-14
|
||||
swfdec = throw "swfdec has been removed as broken and unmaintained"; # Added 2020-08-23
|
||||
swtpm-tpm2 = swtpm; # Added 2021-02-26
|
||||
|
|
|
@ -10479,6 +10479,8 @@ with pkgs;
|
|||
|
||||
svgbob = callPackage ../tools/graphics/svgbob { };
|
||||
|
||||
svgcleaner = callPackage ../tools/graphics/svgcleaner { };
|
||||
|
||||
ssb = callPackage ../tools/security/ssb { };
|
||||
|
||||
ssb-patchwork = callPackage ../applications/networking/ssb-patchwork { };
|
||||
|
|
Loading…
Reference in a new issue