2014-04-01 00:56:05 +01:00
|
|
|
{ stdenv, fetchurl, xproto, libXt, libX11, gifview ? false, static ? false }:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2010-07-28 16:35:01 +01:00
|
|
|
|
2015-11-14 15:56:02 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "gifsicle-${version}";
|
|
|
|
version = "1.88";
|
2010-07-28 16:35:01 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-11-14 15:56:02 +00:00
|
|
|
url = "http://www.lcdf.org/gifsicle/${name}.tar.gz";
|
|
|
|
sha256 = "4585d2e683d7f68eb8fcb15504732d71d7ede48ab5963e61915201f9e68305be";
|
2010-07-28 16:35:01 +01:00
|
|
|
};
|
|
|
|
|
2014-04-01 00:56:05 +01:00
|
|
|
buildInputs = optional gifview [ xproto libXt libX11 ];
|
|
|
|
|
2015-11-14 15:56:02 +00:00
|
|
|
configureFlags = []
|
|
|
|
++ optional (!gifview) [ "--disable-gifview" ];
|
|
|
|
|
2014-04-01 00:56:05 +01:00
|
|
|
LDFLAGS = optional static "-static";
|
2010-07-28 16:35:01 +01:00
|
|
|
|
2015-11-14 15:56:02 +00:00
|
|
|
doCheck = true;
|
|
|
|
checkPhase = ''
|
|
|
|
./src/gifsicle --info logo.gif
|
|
|
|
'';
|
|
|
|
|
2014-09-30 10:40:10 +01:00
|
|
|
meta = {
|
2010-07-28 16:35:01 +01:00
|
|
|
description = "Command-line tool for creating, editing, and getting information about GIF images and animations";
|
2015-11-14 15:56:02 +00:00
|
|
|
homepage = https://www.lcdf.org/gifsicle/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2015-11-14 15:56:02 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu zimbatm ];
|
2010-07-28 16:35:01 +01:00
|
|
|
};
|
|
|
|
}
|