nixpkgs/pkgs/servers/ttyd/default.nix

31 lines
748 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
}:
with builtins;
stdenv.mkDerivation rec {
pname = "ttyd";
version = "1.6.3";
src = fetchFromGitHub {
owner = "tsl0922";
repo = pname;
rev = "refs/tags/${version}";
sha256 = "ErWd99js2EldkRNWFdgZw/X3DIz266kM3lLlC34Deno=";
};
nativeBuildInputs = [ pkg-config cmake xxd ];
2020-04-11 02:30:24 +00:00
buildInputs = [ openssl libwebsockets json_c libuv zlib ];
outputs = [ "out" "man" ];
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 ];
platforms = lib.platforms.linux;
};
}