Merge pull request #100222 from sikmir/pg_tileserv

pg_tileserv: init at 1.0.3
This commit is contained in:
Mario Rodas 2020-10-11 20:34:05 -05:00 committed by GitHub
commit 5da31721c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "pg_tileserv";
version = "1.0.3";
src = fetchFromGitHub {
owner = "CrunchyData";
repo = pname;
rev = "v${version}";
sha256 = "19ycpir662dv6jg3fnlj3208cjhy0lxww3wc3h19x96556yklnfg";
};
vendorSha256 = "1wpzj6par25z7cyyz6p41cxdll4nzb0jjdl1pffgawiy9z7j17vb";
doCheck = false;
meta = with lib; {
description = "A very thin PostGIS-only tile server in Go";
homepage = "https://github.com/CrunchyData/pg_tileserv";
license = licenses.asl20;
maintainers = with maintainers; [ sikmir ];
platforms = platforms.unix;
};
}

View File

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