svgcleaner: init at v0.9.1

Svgcleaner is a tool for fast and safe svg optymalization.
This commit is contained in:
mehandes
2017-10-25 18:43:10 +02:00
parent 63bbada520
commit 17af9f8d4d
3 changed files with 28 additions and 0 deletions
@@ -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 ];
};
}