pg_tileserv: init at 1.0.3

gstqt5
Nikolay Korotkiy 2020-10-11 13:11:24 +03:00
parent 913c5da925
commit f246be40af
No known key found for this signature in database
GPG Key ID: D1DE6D7F693663A5
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

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