about summary refs log tree commit diff
path: root/pkgs/servers/geospatial/t-rex/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/geospatial/t-rex/default.nix')
-rw-r--r--pkgs/servers/geospatial/t-rex/default.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/servers/geospatial/t-rex/default.nix b/pkgs/servers/geospatial/t-rex/default.nix
deleted file mode 100644
index c96d8a8247f5..000000000000
--- a/pkgs/servers/geospatial/t-rex/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, gdal, openssl, Security }:
-
-rustPlatform.buildRustPackage rec {
-  pname = "t-rex";
-  version = "0.14.3";
-
-  src = fetchFromGitHub {
-    owner = "t-rex-tileserver";
-    repo = pname;
-    rev = "v${version}";
-    hash = "sha256-LUVk5li2cl/LKbhKOh6Bbwav0GEuI/vUbDPLn7NSRIs=";
-  };
-
-  cargoHash = "sha256-I4QmjTTKUp9iugEwzM0xCcNLvF5ozeBdYmbi8sytY88=";
-
-  nativeBuildInputs = [ pkg-config ];
-
-  buildInputs = [ gdal openssl ] ++ lib.optional stdenv.isDarwin Security;
-
-  meta = with lib; {
-    description = "Vector tile server specialized on publishing MVT tiles";
-    homepage = "https://t-rex.tileserver.ch/";
-    changelog = "https://github.com/t-rex-tileserver/t-rex/blob/v${version}/CHANGELOG.md";
-    license = licenses.mit;
-    maintainers = teams.geospatial.members;
-    mainProgram = "t_rex";
-    platforms = platforms.unix;
-    broken = true;  # https://github.com/t-rex-tileserver/t-rex/issues/302
-  };
-}