summary refs log tree commit diff
path: root/pkgs/development/libraries/giflib/4.1.nix
blob: 941a7c27feafdaaf0c725d2bfd55981f68f66d49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "giflib-4.1.6";

  src = fetchurl {
    url = mirror://sourceforge/giflib/giflib-4.1.6.tar.bz2;
    sha256 = "1v9b7ywz7qg8hli0s9vv1b8q9xxb2xvqq2mg1zpr73xwqpcwxhg1";
  };

  hardeningDisable = [ "format" ];

  meta = with stdenv.lib; {
    description = "A library for reading and writing gif images";
    branch = "4.1";
    license = licenses.mit;
    platforms = platforms.unix;
  };
}