Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
pkgs: add meta.mainProgram to packages with a single binary
Browse files Browse the repository at this point in the history
  • Loading branch information
imincik committed Mar 21, 2024
1 parent 3bd2530 commit 8a61246
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkgs/fiona/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ buildPythonPackage rec {
meta = with lib; {
changelog = "https://github.com/Toblerity/Fiona/blob/${src.rev}/CHANGES.txt";
description = "OGR's neat, nimble, no-nonsense API for Python";
mainProgram = "fio";
homepage = "https://fiona.readthedocs.io/";
license = licenses.bsd3;
maintainers = teams.geospatial.members;
Expand Down
1 change: 1 addition & 0 deletions pkgs/pg_featureserv/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ buildGoModule rec {

meta = with lib; {
description = "Lightweight RESTful Geospatial Feature Server for PostGIS in Go";
mainProgram = "pg_featureserv";
homepage = "https://github.com/CrunchyData/pg_featureserv";
license = licenses.asl20;
maintainers = teams.geospatial.members;
Expand Down
1 change: 1 addition & 0 deletions pkgs/pg_tileserv/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ buildGoModule rec {

meta = with lib; {
description = "A very thin PostGIS-only tile server in Go";
mainProgram = "pg_tileserv";
homepage = "https://github.com/CrunchyData/pg_tileserv";
license = licenses.asl20;
maintainers = teams.geospatial.members;
Expand Down
1 change: 1 addition & 0 deletions pkgs/pyproj/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ buildPythonPackage rec {

meta = with lib; {
description = "Python interface to PROJ library";
mainProgram = "pyproj";
homepage = "https://github.com/pyproj4/pyproj";
changelog = "https://github.com/pyproj4/pyproj/blob/${src.rev}/docs/history.rst";
license = licenses.mit;
Expand Down
1 change: 1 addition & 0 deletions pkgs/rasterio/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ buildPythonPackage rec {

meta = with lib; {
description = "Python package to read and write geospatial raster data";
mainProgram = "rio";
homepage = "https://rasterio.readthedocs.io/";
changelog = "https://github.com/rasterio/rasterio/blob/${version}/CHANGES.txt";
license = licenses.bsd3;
Expand Down

0 comments on commit 8a61246

Please sign in to comment.