2007-12-31 22:53:40 +01:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "libungif-4.1.4";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://sourceforge/giflib/libungif-4.1.4.tar.gz;
|
2016-03-11 22:44:38 +01:00
|
|
|
sha256 = "5e65e1e5deacd0cde489900dbf54c6c2ee2ebc818199e720dbad685d87abda3d";
|
2007-12-31 22:53:40 +01:00
|
|
|
};
|
2015-12-23 02:59:47 +01:00
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2007-12-31 22:53:40 +01:00
|
|
|
|
2018-10-08 23:05:56 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Library and utilities for processing GIFs";
|
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.mit;
|
2016-08-02 18:06:29 +02:00
|
|
|
};
|
2007-12-31 22:53:40 +01:00
|
|
|
}
|