nixpkgs/pkgs/tools/graphics/svgcleaner/default.nix

23 lines
603 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, rustPlatform }:
2018-01-06 21:33:54 +01:00
rustPlatform.buildRustPackage rec {
2019-08-31 13:41:23 +02:00
pname = "svgcleaner";
2018-01-06 21:33:54 +01:00
version = "0.9.2";
src = fetchFromGitHub {
owner = "RazrFalcon";
repo = "svgcleaner";
rev = "v${version}";
2018-01-06 21:33:54 +01:00
sha256 = "1jpnqsln37kkxz98vj7gly3c2170v6zamd876nc9nfl9vns41s0f";
};
cargoSha256 = "1xhwlsq9b6cnafbapm5jf48zqdx5k2vxlr701lh5f8nqvd7nxi6g";
meta = with stdenv.lib; {
description = "A tool for tidying and optimizing SVGs";
homepage = "https://github.com/RazrFalcon/svgcleaner";
2017-10-26 01:02:18 +02:00
license = licenses.gpl2;
maintainers = [ maintainers.mehandes ];
};
}