mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Merge pull request #57347 from marsam/init-gifski
gifski: init at 0.8.7
This commit is contained in:
commit
640f023ebb
24
pkgs/tools/graphics/gifski/default.nix
Normal file
24
pkgs/tools/graphics/gifski/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user