summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-03-08 14:02:45 -0800
committerzimbatm <zimbatm@zimbatm.com>2018-03-08 22:02:45 +0000
commit8e411e491cb3c580a0b98fd17c1bf9d9bc0cf644 (patch)
tree3bd78c40f265cdc51fcce7380690201efce532e0 /pkgs/tools
parentf9d38863af41b2ed6c49233909b25d22ea78806d (diff)
downloadnixlib-8e411e491cb3c580a0b98fd17c1bf9d9bc0cf644.tar
nixlib-8e411e491cb3c580a0b98fd17c1bf9d9bc0cf644.tar.gz
nixlib-8e411e491cb3c580a0b98fd17c1bf9d9bc0cf644.tar.bz2
nixlib-8e411e491cb3c580a0b98fd17c1bf9d9bc0cf644.tar.lz
nixlib-8e411e491cb3c580a0b98fd17c1bf9d9bc0cf644.tar.xz
nixlib-8e411e491cb3c580a0b98fd17c1bf9d9bc0cf644.tar.zst
nixlib-8e411e491cb3c580a0b98fd17c1bf9d9bc0cf644.zip
gifsicle: 1.90 -> 1.91 (#36536)
Semi-automatic update. These checks were done:

- built on NixOS
- ran `/nix/store/7852k36z8l2vfsxm3ylgm0la1ggl9c8w-gifsicle-1.91/bin/gifsicle -h` got 0 exit code
- ran `/nix/store/7852k36z8l2vfsxm3ylgm0la1ggl9c8w-gifsicle-1.91/bin/gifsicle --help` got 0 exit code
- ran `/nix/store/7852k36z8l2vfsxm3ylgm0la1ggl9c8w-gifsicle-1.91/bin/gifsicle --version` and found version 1.91
- ran `/nix/store/7852k36z8l2vfsxm3ylgm0la1ggl9c8w-gifsicle-1.91/bin/gifdiff -h` got 0 exit code
- ran `/nix/store/7852k36z8l2vfsxm3ylgm0la1ggl9c8w-gifsicle-1.91/bin/gifdiff --help` got 0 exit code
- ran `/nix/store/7852k36z8l2vfsxm3ylgm0la1ggl9c8w-gifsicle-1.91/bin/gifdiff -v` and found version 1.91
- ran `/nix/store/7852k36z8l2vfsxm3ylgm0la1ggl9c8w-gifsicle-1.91/bin/gifdiff --version` and found version 1.91
- found 1.91 with grep in /nix/store/7852k36z8l2vfsxm3ylgm0la1ggl9c8w-gifsicle-1.91
- found 1.91 in filename of file in /nix/store/7852k36z8l2vfsxm3ylgm0la1ggl9c8w-gifsicle-1.91
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/graphics/gifsicle/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/graphics/gifsicle/default.nix b/pkgs/tools/graphics/gifsicle/default.nix
index 7c5f9eaf5de6..05ce6b6f7c9c 100644
--- a/pkgs/tools/graphics/gifsicle/default.nix
+++ b/pkgs/tools/graphics/gifsicle/default.nix
@@ -4,11 +4,11 @@ with stdenv.lib;
 
 stdenv.mkDerivation rec {
   name = "gifsicle-${version}";
-  version = "1.90";
+  version = "1.91";
 
   src = fetchurl {
     url = "http://www.lcdf.org/gifsicle/${name}.tar.gz";
-    sha256 = "0kc35g99fygzjj7qjcy87rdb8mbgmacr2mga9ihgln1dfnbb0wrd";
+    sha256 = "00586z1yz86qcblgmf16yly39n4lkjrscl52hvfxqk14m81fckha";
   };
 
   buildInputs = optional gifview [ xproto libXt libX11 ];