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

37 lines
919 B
Nix
Raw Normal View History

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