2021-01-15 10:19:50 +01:00
|
|
|
{ lib, stdenv, fetchurl, xorgproto, libXt, libX11
|
2021-01-03 22:40:14 +01:00
|
|
|
, gifview ? false
|
|
|
|
, static ? stdenv.hostPlatform.isStatic
|
|
|
|
}:
|
2014-04-01 01:56:05 +02:00
|
|
|
|
2021-01-15 10:19:50 +01:00
|
|
|
with lib;
|
2010-07-28 17:35:01 +02:00
|
|
|
|
2015-11-14 16:56:02 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-04-22 17:20:29 +02:00
|
|
|
pname = "gifsicle";
|
2021-07-03 11:56:07 +02:00
|
|
|
version = "1.93";
|
2010-07-28 17:35:01 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-22 17:20:29 +02:00
|
|
|
url = "https://www.lcdf.org/gifsicle/${pname}-${version}.tar.gz";
|
2021-07-03 11:56:07 +02:00
|
|
|
sha256 = "sha256-kvZweXMr9MHaCH5q4JBSBYRuWsd3ulyqZtEqc6qUNEc=";
|
2010-07-28 17:35:01 +02:00
|
|
|
};
|
|
|
|
|
2019-11-20 10:17:54 +01:00
|
|
|
buildInputs = optionals gifview [ xorgproto libXt libX11 ];
|
2014-04-01 01:56:05 +02:00
|
|
|
|
2019-11-20 10:17:54 +01:00
|
|
|
configureFlags = optional (!gifview) "--disable-gifview";
|
2015-11-14 16:56:02 +01:00
|
|
|
|
2019-11-20 10:17:54 +01:00
|
|
|
LDFLAGS = optionalString static "-static";
|
2010-07-28 17:35:01 +02:00
|
|
|
|
2015-11-14 16:56:02 +01:00
|
|
|
doCheck = true;
|
|
|
|
checkPhase = ''
|
|
|
|
./src/gifsicle --info logo.gif
|
|
|
|
'';
|
|
|
|
|
2014-09-30 11:40:10 +02:00
|
|
|
meta = {
|
2010-07-28 17:35:01 +02:00
|
|
|
description = "Command-line tool for creating, editing, and getting information about GIF images and animations";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.lcdf.org/gifsicle/";
|
2021-01-15 10:19:50 +01:00
|
|
|
license = lib.licenses.gpl2;
|
2015-11-14 16:56:02 +01:00
|
|
|
platforms = platforms.all;
|
2021-01-15 10:19:50 +01:00
|
|
|
maintainers = with lib.maintainers; [ zimbatm ];
|
2010-07-28 17:35:01 +02:00
|
|
|
};
|
|
|
|
}
|