gifski: init at 0.8.7

This commit is contained in:
Mario Rodas 2019-03-03 11:02:27 -05:00
parent adf0e91799
commit 1b493e2555
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, rustPlatform, fetchFromGitHub, pkgconfig }:
rustPlatform.buildRustPackage rec {
name = "gifski-${version}";
version = "0.8.7";
src = fetchFromGitHub {
owner = "ImageOptim";
repo = "gifski";
rev = version;
sha256 = "0x41gyc5jk45jlx0hcq80j5gj1f66lcmbclqyx70l43ggslsi26f";
};
cargoSha256 = "0rgcm9kj9wapn8y3ymcm1n713r0a9bvgm339y302f5gy76gbgzrk";
nativeBuildInputs = [ pkgconfig ];
meta = with stdenv.lib; {
description = "GIF encoder based on libimagequant (pngquant)";
homepage = https://gif.ski/;
license = licenses.agpl3;
maintainers = [ maintainers.marsam ];
};
}

View File

@ -2924,6 +2924,8 @@ in
gifsicle = callPackage ../tools/graphics/gifsicle { };
gifski = callPackage ../tools/graphics/gifski { };
git-big-picture = callPackage ../applications/version-management/git-and-tools/git-big-picture { };
git-crecord = callPackage ../applications/version-management/git-crecord { };