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/libtiff/default.nix
Eelco Dolstra cceb5bcf80 * Work around (temporarily?) broken URL.
svn path=/nixpkgs/branches/x-updates/; revision=22669
2010-07-19 23:24:16 +00:00

22 lines
542 B
Nix

{ stdenv, fetchurl, zlib, libjpeg }:
stdenv.mkDerivation {
name = "libtiff-3.9.4";
src = fetchurl {
urls =
[ ftp://ftp.remotesensing.org/pub/libtiff/tiff-3.9.4.tar.gz
http://download.osgeo.org/libtiff/tiff-3.9.4.tar.gz
];
sha256 = "19hxd773yxcs4lxlc3zfdkz5aiv705vj2jvy5srpqkxpbw3nvdv7";
};
propagatedBuildInputs = [ zlib libjpeg ];
meta = {
description = "Library and utilities for working with the TIFF image file format";
homepage = http://www.libtiff.org/;
license = "bsd";
};
}