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

stdenv.mkDerivation {
  name = "libungif-4.1.4";
  src = fetchurl {
    url = "mirror://sourceforge/giflib/libungif-4.1.4.tar.gz";
    sha256 = "5e65e1e5deacd0cde489900dbf54c6c2ee2ebc818199e720dbad685d87abda3d";
  };

  hardeningDisable = [ "format" ];

  meta = with lib; {
    description = "Library and utilities for processing GIFs";
    platforms = platforms.unix;
    license = licenses.mit;
  };
}