Merge pull request #100226 from sikmir/pg_featureserv

pg_featureserv: init at 1.1.1
This commit is contained in:
Mario Rodas 2020-11-21 14:39:20 -05:00 committed by GitHub
commit 5fac0cf1e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

@ -17135,6 +17135,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 { };