2007-12-31 13:53:40 -08: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 13:44:38 -08:00
|
|
|
sha256 = "5e65e1e5deacd0cde489900dbf54c6c2ee2ebc818199e720dbad685d87abda3d";
|
2007-12-31 13:53:40 -08:00
|
|
|
};
|
2015-12-22 17:59:47 -08:00
|
|
|
|
2016-02-26 09:38:15 -08:00
|
|
|
hardeningDisable = [ "format" ];
|
2007-12-31 13:53:40 -08:00
|
|
|
|
2018-10-08 14:05:56 -07:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Library and utilities for processing GIFs";
|
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.mit;
|
2016-08-02 09:06:29 -07:00
|
|
|
};
|
2007-12-31 13:53:40 -08:00
|
|
|
}
|