nixpkgs/pkgs/servers/ttyd/default.nix

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

31 lines
753 B
Nix
Raw Normal View History

2021-01-15 10:07:56 +03:00
{ lib, stdenv, fetchFromGitHub
, pkg-config, cmake, xxd
2020-04-11 05:30:24 +03:00
, openssl, libwebsockets, json_c, libuv, zlib
}:
with builtins;
stdenv.mkDerivation rec {
pname = "ttyd";
2022-08-11 04:03:11 +03:00
version = "1.7.0";
src = fetchFromGitHub {
owner = "tsl0922";
repo = pname;
rev = "refs/tags/${version}";
2022-08-11 04:03:11 +03:00
sha256 = "sha256-Q1A3UMlC3CYzqQxle7XT/o22eWHorMJ5hDXTIT/UMQM=";
};
nativeBuildInputs = [ pkg-config cmake xxd ];
2020-04-11 05:30:24 +03: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 10:07:56 +03:00
license = lib.licenses.mit;
maintainers = [ lib.maintainers.thoughtpolice ];
2021-10-31 07:20:00 +03:00
platforms = lib.platforms.all;
};
}