1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/giflib/5.0.nix
Luca Bruno e707530751 giflib: add back the 5.0 version
Should fix tracker and may be used to fix
other packages after commit 61f8cee.

Untested as it takes too much time to recompile
everything these days.
2014-10-02 01:41:35 +02:00

13 lines
343 B
Nix

{stdenv, fetchurl, xmlto, docbook_xml_dtd_412, docbook_xsl, libxml2 }:
stdenv.mkDerivation {
name = "giflib-5.0.5";
src = fetchurl {
url = mirror://sourceforge/giflib/giflib-5.0.5.tar.bz2;
sha256 = "02c6pwll9pzw5fhg5gccx2ws56d70ylfryk21nv5lqhwdcv8lvb0";
};
buildInputs = [ xmlto docbook_xml_dtd_412 docbook_xsl libxml2 ];
}