pg_featureserv: init at 1.1.1

This commit is contained in:
Nikolay Korotkiy 2020-10-11 14:12:04 +03:00
parent 49cd7307d0
commit 5a60fcf9e8
No known key found for this signature in database
GPG key ID: D1DE6D7F693663A5
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "pg_featureserv";
version = "1.1.1";
src = fetchFromGitHub {
owner = "CrunchyData";
repo = pname;
rev = "v${version}";
sha256 = "0vfrwncx41yn9n2hqb32av3xgd13fqplrs1qzg5mv25i4qppd88l";
};
vendorSha256 = "1jqrkx850ghmpnfjhqky93r8fq7q63m5ivs0lzljzbvn7ya75f2r";
meta = with lib; {
description = "Lightweight RESTful Geospatial Feature Server for PostGIS in Go";
homepage = "https://github.com/CrunchyData/pg_featureserv";
license = licenses.asl20;
maintainers = with maintainers; [ sikmir ];
platforms = platforms.unix;
};
}

View file

@ -16987,6 +16987,8 @@ in
tomcat-native = callPackage ../servers/http/tomcat/tomcat-native.nix { };
pg_featureserv = callPackage ../servers/pg_featureserv { };
pg_tileserv = callPackage ../servers/pg_tileserv { };
pies = callPackage ../servers/pies { };