nixpkgs/pkgs/servers/ttyd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
850 B
Nix
Raw Normal View History

2021-01-15 07:07:56 +00:00
{ lib, stdenv, fetchFromGitHub
, pkg-config, cmake, xxd
2020-04-11 02:30:24 +00:00
, openssl, libwebsockets, json_c, libuv, zlib
, nixosTests
}:
with builtins;
stdenv.mkDerivation rec {
pname = "ttyd";
2024-04-04 19:39:34 +00:00
version = "1.7.7";
src = fetchFromGitHub {
owner = "tsl0922";
repo = pname;
rev = "refs/tags/${version}";
2024-04-04 19:39:34 +00:00
sha256 = "sha256-7e08oBKU7BMZ8328qCfNynCSe7LVZ88+iQZRRKl2YkY=";
};
nativeBuildInputs = [ pkg-config cmake xxd ];
2020-04-11 02:30:24 +00:00
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";
2021-01-15 07:07:56 +00:00
license = lib.licenses.mit;
maintainers = [ lib.maintainers.thoughtpolice ];
2021-10-31 04:20:00 +00:00
platforms = lib.platforms.all;
2023-11-23 21:09:35 +00:00
mainProgram = "ttyd";
};
}