nixpkgs/pkgs/development/libraries/libgeotiff/default.nix

37 lines
933 B
Nix
Raw Normal View History

2019-07-11 10:06:19 +00:00
{ stdenv, fetchFromGitHub, libtiff, libjpeg, proj, zlib, autoreconfHook }:
2016-11-06 09:08:40 +00:00
stdenv.mkDerivation rec {
2019-07-11 10:06:19 +00:00
version = "1.5.1";
pname = "libgeotiff";
2019-07-11 10:06:19 +00:00
src = fetchFromGitHub {
owner = "OSGeo";
repo = "libgeotiff";
rev = version;
sha256 = "081ag23pn2n5y4fkb2rnh4hmcnq92siqiqv0s20jmx0j3s2nvfxy";
};
2019-07-11 10:06:19 +00:00
outputs = [ "out" "dev" ];
sourceRoot = "source/libgeotiff";
2016-11-06 09:08:40 +00:00
configureFlags = [
"--with-jpeg=${libjpeg.dev}"
"--with-zlib=${zlib.dev}"
];
2019-07-11 10:06:19 +00:00
nativeBuildInputs = [ autoreconfHook ];
2016-11-06 09:08:40 +00:00
buildInputs = [ libtiff proj ];
hardeningDisable = [ "format" ];
2016-02-07 16:31:59 +00:00
meta = {
description = "Library implementing attempt to create a tiff based interchange format for georeferenced raster imagery";
homepage = https://github.com/OSGeo/libgeotiff;
license = stdenv.lib.licenses.mit;
maintainers = [stdenv.lib.maintainers.marcweber];
2016-11-07 19:42:26 +00:00
platforms = with stdenv.lib.platforms; linux ++ darwin;
};
}