2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv, fetchurl, xorgproto, libXt, libX11
|
2021-01-03 21:40:14 +00:00
|
|
|
, gifview ? false
|
|
|
|
, static ? stdenv.hostPlatform.isStatic
|
|
|
|
}:
|
2014-04-01 00:56:05 +01:00
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
with lib;
|
2010-07-28 16:35:01 +01:00
|
|
|
|
2015-11-14 15:56:02 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-04-22 16:20:29 +01:00
|
|
|
pname = "gifsicle";
|
|
|
|
version = "1.92";
|
2010-07-28 16:35:01 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-22 16:20:29 +01:00
|
|
|
url = "https://www.lcdf.org/gifsicle/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "0rffpzxcak19k6cngpxn73khvm3z1gswrqs90ycdzzb53p05ddas";
|
2010-07-28 16:35:01 +01:00
|
|
|
};
|
|
|
|
|
2019-11-20 09:17:54 +00:00
|
|
|
buildInputs = optionals gifview [ xorgproto libXt libX11 ];
|
2014-04-01 00:56:05 +01:00
|
|
|
|
2019-11-20 09:17:54 +00:00
|
|
|
configureFlags = optional (!gifview) "--disable-gifview";
|
2015-11-14 15:56:02 +00:00
|
|
|
|
2019-11-20 09:17:54 +00:00
|
|
|
LDFLAGS = optionalString 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";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.lcdf.org/gifsicle/";
|
2021-01-15 09:19:50 +00:00
|
|
|
license = lib.licenses.gpl2;
|
2015-11-14 15:56:02 +00:00
|
|
|
platforms = platforms.all;
|
2021-01-15 09:19:50 +00:00
|
|
|
maintainers = with lib.maintainers; [ zimbatm ];
|
2010-07-28 16:35:01 +01:00
|
|
|
};
|
|
|
|
}
|