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 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";
2023-01-21 03:41:50 +00:00
version = "1.7.3";
src = fetchFromGitHub {
owner = "tsl0922";
repo = pname;
rev = "refs/tags/${version}";
2023-01-21 03:41:50 +00:00
sha256 = "sha256-zwKK8TPEATAgJwHh04hurzU3NrhyHA70qkf5kXW1yQc=";
};
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 ];
2021-10-31 04:20:00 +00:00
platforms = lib.platforms.all;
};
}