t/gis/libgeotiff
adding libgeotiff Signed-off-by: Marc Weber <marco-oweber@gmx.de> svn path=/nixpkgs/trunk/; revision=22113
This commit is contained in:
parent
8dcb020e80
commit
5f5d6f185f
19
pkgs/development/libraries/libgeotiff/default.nix
Normal file
19
pkgs/development/libraries/libgeotiff/default.nix
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
args: with args;
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "libgeotiff-1.2.4";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = ftp://ftp.remotesensing.org/pub/geotiff/libgeotiff/libgeotiff-1.2.5.tar.gz;
|
||||||
|
sha256 = "0z2yx77pm0zs81hc0b4lwzdd5s0rxcbylnscgq80b649src1fyzj";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [libtiff];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "library implementing attempt to create a tiff based interchange format for georeferenced raster imagery";
|
||||||
|
homepage = http://www.remotesensing.org/geotiff/geotiff.html;
|
||||||
|
license = "X11";
|
||||||
|
maintainers = [stdenv.lib.maintainers.marcweber];
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -4714,6 +4714,10 @@ let
|
|||||||
inherit fetchurl stdenv libtool;
|
inherit fetchurl stdenv libtool;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
libgeotiff = import ../development/libraries/libgeotiff {
|
||||||
|
inherit stdenv fetchurl libtiff;
|
||||||
|
};
|
||||||
|
|
||||||
libunistring = import ../development/libraries/libunistring {
|
libunistring = import ../development/libraries/libunistring {
|
||||||
inherit fetchurl stdenv libiconv;
|
inherit fetchurl stdenv libiconv;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user