about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/ttyd/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/ttyd/default.nix')
-rw-r--r--nixpkgs/pkgs/servers/ttyd/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/servers/ttyd/default.nix b/nixpkgs/pkgs/servers/ttyd/default.nix
new file mode 100644
index 000000000000..23b782c540db
--- /dev/null
+++ b/nixpkgs/pkgs/servers/ttyd/default.nix
@@ -0,0 +1,36 @@
+{ lib, stdenv, fetchFromGitHub
+, pkg-config, cmake, xxd
+, openssl, libwebsockets, json_c, libuv, zlib
+, nixosTests
+}:
+
+with builtins;
+
+stdenv.mkDerivation rec {
+  pname = "ttyd";
+  version = "1.7.4";
+  src = fetchFromGitHub {
+    owner = "tsl0922";
+    repo = pname;
+    rev = "refs/tags/${version}";
+    sha256 = "sha256-BNvJkDOSlcNXt5W9/3/4I+MhQYn0W37zrJRYpAoZWaA=";
+  };
+
+  nativeBuildInputs = [ pkg-config cmake xxd ];
+  buildInputs = [ openssl libwebsockets json_c libuv zlib ];
+
+  outputs = [ "out" "man" ];
+
+  passthru.tests = {
+    inherit (nixosTests) ttyd;
+  };
+
+  meta = {
+    description = "Share your terminal over the web";
+    homepage    = "https://github.com/tsl0922/ttyd";
+    license     = lib.licenses.mit;
+    maintainers = [ lib.maintainers.thoughtpolice ];
+    platforms   = lib.platforms.all;
+    mainProgram = "ttyd";
+  };
+}