mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 19:15:39 +00:00
56904d7c42
* libtiff: remove dead source url * libgeotiff: update url
23 lines
670 B
Nix
23 lines
670 B
Nix
{ stdenv, fetchurl, libtiff }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libgeotiff-1.2.5";
|
|
|
|
src = fetchurl {
|
|
url = http://download.osgeo.org/geotiff/libgeotiff/libgeotiff-1.2.5.tar.gz;
|
|
sha256 = "0z2yx77pm0zs81hc0b4lwzdd5s0rxcbylnscgq80b649src1fyzj";
|
|
};
|
|
|
|
buildInputs = [ libtiff ];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
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 = stdenv.lib.licenses.mit;
|
|
maintainers = [stdenv.lib.maintainers.marcweber];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|