about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/t-/t-rex/package.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/by-name/t-/t-rex/package.nix')
-rw-r--r--nixpkgs/pkgs/by-name/t-/t-rex/package.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/by-name/t-/t-rex/package.nix b/nixpkgs/pkgs/by-name/t-/t-rex/package.nix
new file mode 100644
index 000000000000..f26592e052d0
--- /dev/null
+++ b/nixpkgs/pkgs/by-name/t-/t-rex/package.nix
@@ -0,0 +1,30 @@
+{ lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, gdal, openssl, darwin }:
+
+rustPlatform.buildRustPackage rec {
+  pname = "t-rex";
+  version = "0.15.0-alpha3";
+
+  src = fetchFromGitHub {
+    owner = "t-rex-tileserver";
+    repo = "t-rex";
+    rev = "v${version}";
+    hash = "sha256-oZZrR86/acoyMX3vC1JGrpc8G+DEuplqfEAnaP+TBGU=";
+  };
+
+  cargoHash = "sha256-nxq4mX2Sy6Hyi8tA2CQsQwISB/kau4DEkAgIm4SvGns=";
+
+  nativeBuildInputs = [ pkg-config rustPlatform.bindgenHook ];
+
+  buildInputs = [ gdal openssl ]
+    ++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.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;
+  };
+}