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

stdenv.mkDerivation rec {
  pname = "giflib";
  version = "4.1.6";

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

  hardeningDisable = [ "format" ];

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