nixpkgs-suyu/pkgs/tools/graphics/gifsicle/default.nix

34 lines
902 B
Nix
Raw Normal View History

{ stdenv, fetchurl, xproto, libXt, libX11, gifview ? false, static ? false }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "gifsicle-${version}";
2017-11-01 21:25:50 +01:00
version = "1.90";
src = fetchurl {
url = "http://www.lcdf.org/gifsicle/${name}.tar.gz";
2017-11-01 21:25:50 +01:00
sha256 = "0kc35g99fygzjj7qjcy87rdb8mbgmacr2mga9ihgln1dfnbb0wrd";
};
buildInputs = optional gifview [ xproto libXt libX11 ];
configureFlags = []
++ optional (!gifview) [ "--disable-gifview" ];
LDFLAGS = optional static "-static";
doCheck = true;
checkPhase = ''
./src/gifsicle --info logo.gif
'';
2014-09-30 11:40:10 +02:00
meta = {
description = "Command-line tool for creating, editing, and getting information about GIF images and animations";
homepage = https://www.lcdf.org/gifsicle/;
license = stdenv.lib.licenses.gpl2;
platforms = platforms.all;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu zimbatm ];
};
}