mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
36 lines
837 B
Nix
36 lines
837 B
Nix
{ lib, stdenv, fetchFromGitHub
|
|
, pkg-config, cmake, xxd
|
|
, openssl, libwebsockets, json_c, libuv, zlib
|
|
}:
|
|
|
|
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";
|
|
};
|
|
}
|