summary refs log blame commit diff
path: root/pkgs/servers/tegola/default.nix
blob: ac3dccdab738ffc7ef29192d077cdbb831e7ce73 (plain) (tree)
1
2
3
4


                                            
                   



















                                                                    
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "tegola";
  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;
  };
}