about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/giflib/4.1.nix
blob: 954e508152c284d5c543bf5aa4c708cd0eb54383 (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;
  };
}