about summary refs log tree commit diff
path: root/pkgs/tools/graphics
diff options
context:
space:
mode:
authorMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-09-30 10:40:10 +0100
committerMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-09-30 10:40:37 +0100
commit4ebeeead31cbedc244df5cf696f8d0c72c9962bc (patch)
treec7b57eedcd520fe6dea6c8caa86018da317afec9 /pkgs/tools/graphics
parent397b0de1c1514816bdeb372f17c6749cfe450db4 (diff)
downloadnixlib-4ebeeead31cbedc244df5cf696f8d0c72c9962bc.tar
nixlib-4ebeeead31cbedc244df5cf696f8d0c72c9962bc.tar.gz
nixlib-4ebeeead31cbedc244df5cf696f8d0c72c9962bc.tar.bz2
nixlib-4ebeeead31cbedc244df5cf696f8d0c72c9962bc.tar.lz
nixlib-4ebeeead31cbedc244df5cf696f8d0c72c9962bc.tar.xz
nixlib-4ebeeead31cbedc244df5cf696f8d0c72c9962bc.tar.zst
nixlib-4ebeeead31cbedc244df5cf696f8d0c72c9962bc.zip
gifsicle: update from 1.78 to 1.84
Diffstat (limited to 'pkgs/tools/graphics')
-rw-r--r--pkgs/tools/graphics/gifsicle/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/tools/graphics/gifsicle/default.nix b/pkgs/tools/graphics/gifsicle/default.nix
index dc1a8b3abaee..5216c1999e4d 100644
--- a/pkgs/tools/graphics/gifsicle/default.nix
+++ b/pkgs/tools/graphics/gifsicle/default.nix
@@ -3,20 +3,21 @@
 with stdenv.lib;
 
 stdenv.mkDerivation {
-  name = "gifsicle-1.78";
+  name = "gifsicle-1.84";
 
   src = fetchurl {
-    url = http://www.lcdf.org/gifsicle/gifsicle-1.78.tar.gz;
-    sha256 = "0dzp5sg82klji4lbj1m4cyg9fb3l837gkipdx657clib97klyv53";
+    url = http://www.lcdf.org/gifsicle/gifsicle-1.84.tar.gz;
+    sha256 = "1ymk7lkk50fds6090icnjg69dswzz5zyiirq2ws23aagw3l46z86";
   };
 
   buildInputs = optional gifview [ xproto libXt libX11 ];
 
   LDFLAGS = optional static "-static";
 
-  meta = { 
+  meta = {
     description = "Command-line tool for creating, editing, and getting information about GIF images and animations";
     homepage = http://www.lcdf.org/gifsicle/;
     license = stdenv.lib.licenses.gpl2;
+    maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
   };
 }