summary refs log tree commit diff
path: root/pkgs/development/libraries/libtiff/default.nix
blob: 386abb6fbc2e9ffb89a8852f94c66e084e35bd74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl, zlib, libjpeg }:

stdenv.mkDerivation {
  name = "libtiff-3.9.4";
  
  src = fetchurl {
    url = ftp://ftp.remotesensing.org/pub/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";
  };
}