openxray: 2188-november-2023-rc1 -> 2921-january-2025-rc1 (#375925)
[NixPkgs.git] / pkgs / by-name / li / libgeotiff / package.nix
blob14c3204dcdf541b0d95a66c2fbc58a44a28ec4d3
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   autoreconfHook,
6   pkg-config,
7   libjpeg,
8   libtiff,
9   proj,
10   zlib,
13 stdenv.mkDerivation rec {
14   version = "1.7.3";
15   pname = "libgeotiff";
17   src = fetchFromGitHub {
18     owner = "OSGeo";
19     repo = "libgeotiff";
20     rev = version;
21     hash = "sha256-FUvWZR5BrGEMnApxCBQBwmmi9NU7Tx6Ziq3mbIxjqfc=";
22   };
24   outputs = [
25     "out"
26     "dev"
27   ];
29   sourceRoot = "${src.name}/libgeotiff";
31   configureFlags = [
32     "--with-jpeg=${libjpeg.dev}"
33     "--with-zlib=${zlib.dev}"
34   ];
36   nativeBuildInputs = [
37     autoreconfHook
38     pkg-config
39   ];
41   buildInputs = [
42     libtiff
43     proj
44   ];
46   #hardeningDisable = [ "format" ];
48   meta = with lib; {
49     description = "Library implementing attempt to create a tiff based interchange format for georeferenced raster imagery";
50     homepage = "https://github.com/OSGeo/libgeotiff";
51     changelog = "https://github.com/OSGeo/libgeotiff/blob/${src.rev}/libgeotiff/NEWS";
52     license = licenses.mit;
53     maintainers = with maintainers; teams.geospatial.members ++ [ marcweber ];
54     platforms = with platforms; linux ++ darwin;
55   };