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

18 lines
431 B
Nix
Raw Normal View History

{lib, stdenv, fetchurl}:
stdenv.mkDerivation {
name = "libungif-4.1.4";
src = fetchurl {
url = "mirror://sourceforge/giflib/libungif-4.1.4.tar.gz";
2016-03-11 21:44:38 +00:00
sha256 = "5e65e1e5deacd0cde489900dbf54c6c2ee2ebc818199e720dbad685d87abda3d";
};
2015-12-23 01:59:47 +00:00
hardeningDisable = [ "format" ];
meta = with lib; {
2018-10-08 21:05:56 +00:00
description = "Library and utilities for processing GIFs";
platforms = platforms.unix;
license = licenses.mit;
};
}