mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
bf7ad2d84f
Mostly scripted substitutions with a couple of subjective enhancements.
19 lines
587 B
Nix
19 lines
587 B
Nix
{stdenv, fetchurl, xmlto, docbook_xml_dtd_412, docbook_xsl, libxml2 }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "giflib-5.0.6";
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/giflib/giflib-5.0.6.tar.bz2;
|
|
sha256 = "1sk9ysh27nabwb6z7a38n8gy2y2rnl3vjkbapv7pbjnzrff862c9";
|
|
};
|
|
|
|
buildInputs = [ xmlto docbook_xml_dtd_412 docbook_xsl libxml2 ];
|
|
meta = {
|
|
description = "A library for reading and writing gif images";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
license = stdenv.lib.licenses.mit;
|
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
|
branch = "5.0";
|
|
};
|
|
}
|