tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libgeotiff: add geospatial team to maintainers
Ivan Mincik
2 years ago
1783a96f
3d88cc85
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libgeotiff
default.nix
+4
-4
pkgs/development/libraries/libgeotiff/default.nix
···
38
39
#hardeningDisable = [ "format" ];
40
41
-
meta = {
42
description = "Library implementing attempt to create a tiff based interchange format for georeferenced raster imagery";
43
homepage = "https://github.com/OSGeo/libgeotiff";
44
changelog = "https://github.com/OSGeo/libgeotiff/blob/${src.rev}/libgeotiff/NEWS";
45
-
license = lib.licenses.mit;
46
-
maintainers = [lib.maintainers.marcweber];
47
-
platforms = with lib.platforms; linux ++ darwin;
48
};
49
}
···
38
39
#hardeningDisable = [ "format" ];
40
41
+
meta = with lib; {
42
description = "Library implementing attempt to create a tiff based interchange format for georeferenced raster imagery";
43
homepage = "https://github.com/OSGeo/libgeotiff";
44
changelog = "https://github.com/OSGeo/libgeotiff/blob/${src.rev}/libgeotiff/NEWS";
45
+
license = licenses.mit;
46
+
maintainers = with maintainers; teams.geospatial.members ++ [ marcweber ];
47
+
platforms = with platforms; linux ++ darwin;
48
};
49
}