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

assert zlib != null && libjpeg != null;

derivation {
  name = "libtiff-3.5.7";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = ftp://ftp.remotesensing.org/pub/libtiff/tiff-v3.5.7.tar.gz;
    md5 = "82243b5ae9b7c9e492aeebc501680990";
  };
  stdenv = stdenv;
  zlib = zlib;
  libjpeg = libjpeg;
}