mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
svgcleaner: init at v0.9.1
Svgcleaner is a tool for fast and safe svg optymalization.
This commit is contained in:
parent
63bbada520
commit
17af9f8d4d
@ -387,6 +387,7 @@
|
||||
mcmtroffaes = "Matthias C. M. Troffaes <matthias.troffaes@gmail.com>";
|
||||
mdaiter = "Matthew S. Daiter <mdaiter8121@gmail.com>";
|
||||
meditans = "Carlo Nucera <meditans@gmail.com>";
|
||||
mehandes = "Matt Deming <niewskici@gmail.com>";
|
||||
meisternu = "Matt Miemiec <meister@krutt.org>";
|
||||
metabar = "Celine Mercier <softs@metabarcoding.org>";
|
||||
mgdelacroix = "Miguel de la Cruz <mgdelacroix@gmail.com>";
|
||||
|
25
pkgs/tools/graphics/svgcleaner/default.nix
Normal file
25
pkgs/tools/graphics/svgcleaner/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchFromGitHub, rustPlatform }:
|
||||
|
||||
with rustPlatform;
|
||||
|
||||
buildRustPackage rec {
|
||||
name = "svgcleaner-${version}";
|
||||
version = "0.9.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "RazrFalcon";
|
||||
repo = "svgcleaner";
|
||||
rev = "v${version}";
|
||||
sha256 = "0l75a2kqh2syl14pmywrkxhr19fcnfpzjj9gj3503aw0r800g16m";
|
||||
};
|
||||
|
||||
cargoSha256 = "1hl04wqdgspajf2w664i00vgp13yi0sxvjjpfs5vfhm641z3j69y";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A tool for tidying and optimizing SVGs";
|
||||
homepage = "https://github.com/RazrFalcon/svgcleaner";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
maintainer = [ maintainers.mehandes ];
|
||||
};
|
||||
}
|
@ -4504,6 +4504,8 @@ with pkgs;
|
||||
|
||||
super-user-spark = haskellPackages.callPackage ../applications/misc/super_user_spark { };
|
||||
|
||||
svgcleaner = callPackage ../tools/graphics/svgcleaner { };
|
||||
|
||||
ssdeep = callPackage ../tools/security/ssdeep { };
|
||||
|
||||
ssh-ident = callPackage ../tools/networking/ssh-ident { };
|
||||
|
Loading…
Reference in New Issue
Block a user