2007-12-31 21:53:40 +00:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "libungif-4.1.4";
|
|
|
|
src = fetchurl {
|
2020-03-31 21:11:51 -04:00
|
|
|
url = "mirror://sourceforge/giflib/libungif-4.1.4.tar.gz";
|
2016-03-11 15:44:38 -06:00
|
|
|
sha256 = "5e65e1e5deacd0cde489900dbf54c6c2ee2ebc818199e720dbad685d87abda3d";
|
2007-12-31 21:53:40 +00:00
|
|
|
};
|
2015-12-23 02:59:47 +01:00
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2007-12-31 21:53:40 +00: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 19:06:29 +03:00
|
|
|
};
|
2007-12-31 21:53:40 +00:00
|
|
|
}
|