Fernando Rodrigues 05580f4b44
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00

58 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
pkg-config,
libjpeg,
libtiff,
proj,
zlib,
}:
stdenv.mkDerivation rec {
version = "1.7.4";
pname = "libgeotiff";
src = fetchFromGitHub {
owner = "OSGeo";
repo = "libgeotiff";
rev = version;
hash = "sha256-oiuooLejCRI1DFTjhgYoePtKS+OAGnW6OBzgITcY500=";
};
outputs = [
"out"
"dev"
];
sourceRoot = "${src.name}/libgeotiff";
configureFlags = [
"--with-jpeg=${libjpeg.dev}"
"--with-zlib=${zlib.dev}"
];
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [
libtiff
proj
];
#hardeningDisable = [ "format" ];
meta = with lib; {
description = "Library implementing attempt to create a tiff based interchange format for georeferenced raster imagery";
homepage = "https://github.com/OSGeo/libgeotiff";
changelog = "https://github.com/OSGeo/libgeotiff/blob/${src.rev}/libgeotiff/NEWS";
license = licenses.mit;
maintainers = with maintainers; [ marcweber ];
teams = [ teams.geospatial ];
platforms = with platforms; linux ++ darwin;
};
}