Merge pull request #57347 from marsam/init-gifski

gifski: init at 0.8.7
This commit is contained in:
Vladyslav M 2019-03-11 12:10:02 +02:00 committed by GitHub
commit 640f023ebb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 { };