nixpkgs/pkgs/development/libraries/giflib/4.1.nix

21 lines
443 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "giflib-4.1.6";
2016-02-08 10:52:31 +01:00
src = fetchurl {
url = "mirror://sourceforge/giflib/giflib-4.1.6.tar.bz2";
sha256 = "1v9b7ywz7qg8hli0s9vv1b8q9xxb2xvqq2mg1zpr73xwqpcwxhg1";
};
2016-02-08 10:52:31 +01:00
hardeningDisable = [ "format" ];
2016-02-08 10:52:31 +01:00
2018-08-20 19:57:41 +02:00
meta = with stdenv.lib; {
description = "A library for reading and writing gif images";
2014-04-03 06:55:17 +02:00
branch = "4.1";
2018-08-20 19:57:41 +02:00
license = licenses.mit;
platforms = platforms.unix;
2014-04-03 06:55:17 +02:00
};
}