about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/temporalite
diff options
context:
space:
mode:
authorLuc Perkins <lucperkins@gmail.com>2022-10-15 11:42:04 -0500
committerLuc Perkins <lucperkins@gmail.com>2022-11-01 12:08:52 -0300
commitd242221640a92bf85ee09d271f73eba2bec19241 (patch)
treeaf505608f2867a8395c5760bea2b7110356366c6 /pkgs/applications/networking/cluster/temporalite
parent5ec1699ec06a700da4c1289b877654665546b2c5 (diff)
temporalite: init at 0.2.0
Diffstat (limited to 'pkgs/applications/networking/cluster/temporalite')
-rw-r--r--pkgs/applications/networking/cluster/temporalite/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/temporalite/default.nix b/pkgs/applications/networking/cluster/temporalite/default.nix
new file mode 100644
index 0000000000000..8a4d53797f5ba
--- /dev/null
+++ b/pkgs/applications/networking/cluster/temporalite/default.nix
@@ -0,0 +1,35 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+  pname = "temporalite";
+  version = "0.2.0";
+
+  src = fetchFromGitHub {
+    owner = "temporalio";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "sha256-rLEkWg5LNVb7i/2IARKGuP9ugaVJA9pwYbKLm0QLmOc=";
+  };
+
+  vendorSha256 = "sha256-vjuwh/HRRYfB6J49rfJxif12nYPnbBodWF9hTiGygS8=";
+
+  subPackages = [ "cmd/temporalite" ];
+
+  postPatch = ''
+    substituteInPlace cmd/temporalite/ui_test.go \
+      --replace "TestNewUIConfigWithMissingConfigFile" "SkipNewUIConfigWithMissingConfigFile"
+
+    substituteInPlace cmd/temporalite/mtls_test.go \
+      --replace "TestMTLSConfig" "SkipMTLSConfig"
+  '';
+
+  meta = with lib; {
+    description = "An experimental distribution of Temporal that runs as a single process";
+    homepage = "https://github.com/temporalio/temporalite";
+    license = licenses.mit;
+    maintainers = with maintainers; [ lucperkins ];
+  };
+}