mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
Merge pull request #100226 from sikmir/pg_featureserv
pg_featureserv: init at 1.1.1
This commit is contained in:
commit
5fac0cf1e9
23
pkgs/servers/pg_featureserv/default.nix
Normal file
23
pkgs/servers/pg_featureserv/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user