* libtiff 3.9.1.
svn path=/nixpkgs/branches/xorg-7.5/; revision=18027
This commit is contained in:
parent
843617bac9
commit
cb7dfb9652
@ -1,5 +0,0 @@
|
|||||||
source $stdenv/setup
|
|
||||||
|
|
||||||
configureFlags="--with-DIR_MAN=$out/man --with-ZIP --with-JPEG"
|
|
||||||
|
|
||||||
genericBuild
|
|
@ -1,14 +1,18 @@
|
|||||||
{stdenv, fetchurl, zlib, libjpeg}:
|
{ stdenv, fetchurl, zlib, libjpeg }:
|
||||||
|
|
||||||
assert zlib != null && libjpeg != null;
|
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "libtiff-3.8.2";
|
name = "libtiff-3.9.1";
|
||||||
builder = ./builder.sh;
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = ftp://ftp.remotesensing.org/pub/libtiff/tiff-3.8.2.tar.gz;
|
url = ftp://ftp.remotesensing.org/pub/libtiff/tiff-3.9.1.tar.gz;
|
||||||
md5 = "fbb6f446ea4ed18955e2714934e5b698";
|
sha256 = "168yssav47xih2y17m7psj4k6ngnfai300bbfznc75hn3crxfdil";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [zlib libjpeg];
|
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";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user