parent
fa8f1340ff
commit
f30355eedb
@ -1949,6 +1949,11 @@
|
||||
github = "infinisil";
|
||||
name = "Silvan Mosberger";
|
||||
};
|
||||
ingenieroariel = {
|
||||
email = "ariel@nunez.co";
|
||||
github = "ingenieroariel";
|
||||
name = "Ariel Nunez";
|
||||
};
|
||||
ironpinguin = {
|
||||
email = "michele@catalano.de";
|
||||
github = "ironpinguin";
|
||||
|
24
pkgs/servers/tegola/default.nix
Normal file
24
pkgs/servers/tegola/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "tegola-${version}";
|
||||
version = "0.8.1";
|
||||
rev = "8b2675a63624ad1d69a8d2c84a6a3f3933e25ca1";
|
||||
|
||||
goPackagePath = "github.com/go-spatial/tegola";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "go-spatial";
|
||||
repo = "tegola";
|
||||
inherit rev;
|
||||
sha256 = "1f70vsrj3i1d0kg76a8s741nps71hrglgyyrz2xm6a8b31w833pi";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://www.tegola.io/;
|
||||
description = "Mapbox Vector Tile server";
|
||||
maintainers = with maintainers; [ ingenieroariel ];
|
||||
platforms = platforms.unix;
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
@ -6172,6 +6172,8 @@ in
|
||||
|
||||
rcm = callPackage ../tools/misc/rcm {};
|
||||
|
||||
tegola = callPackage ../servers/tegola {};
|
||||
|
||||
tftp-hpa = callPackage ../tools/networking/tftp-hpa {};
|
||||
|
||||
tigervnc = callPackage ../tools/admin/tigervnc {
|
||||
|
Loading…
Reference in New Issue
Block a user