1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00

* libtiff 3.9.1.

svn path=/nixpkgs/branches/xorg-7.5/; revision=18027
This commit is contained in:
Eelco Dolstra 2009-10-29 14:19:58 +00:00
parent 843617bac9
commit cb7dfb9652
2 changed files with 12 additions and 13 deletions

View file

@ -1,5 +0,0 @@
source $stdenv/setup
configureFlags="--with-DIR_MAN=$out/man --with-ZIP --with-JPEG"
genericBuild

View file

@ -1,14 +1,18 @@
{stdenv, fetchurl, zlib, libjpeg}:
assert zlib != null && libjpeg != null;
{ stdenv, fetchurl, zlib, libjpeg }:
stdenv.mkDerivation {
name = "libtiff-3.8.2";
builder = ./builder.sh;
name = "libtiff-3.9.1";
src = fetchurl {
url = ftp://ftp.remotesensing.org/pub/libtiff/tiff-3.8.2.tar.gz;
md5 = "fbb6f446ea4ed18955e2714934e5b698";
url = ftp://ftp.remotesensing.org/pub/libtiff/tiff-3.9.1.tar.gz;
sha256 = "168yssav47xih2y17m7psj4k6ngnfai300bbfznc75hn3crxfdil";
};
propagatedBuildInputs = [zlib libjpeg];
inherit zlib libjpeg;
meta = {
description = "Library and utilities for working with the TIFF image file format";
homepage = http://www.libtiff.org/;
license = "bsd";
};
}