mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
ttyd: 1.5.2 -> 1.6.0
This commit is contained in:
parent
1f57d5e060
commit
6695fdc961
@ -1,22 +1,22 @@
|
|||||||
{ stdenv, fetchFromGitHub
|
{ stdenv, fetchFromGitHub
|
||||||
, pkgconfig, cmake, xxd
|
, pkgconfig, cmake, xxd
|
||||||
, openssl, libwebsockets, json_c, libuv
|
, openssl, libwebsockets, json_c, libuv, zlib
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with builtins;
|
with builtins;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "ttyd";
|
pname = "ttyd";
|
||||||
version = "1.5.2";
|
version = "1.6.0";
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "tsl0922";
|
owner = "tsl0922";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
sha256 = "16nngc3dqrsgpapzvl34c0msgdd1fyp3k8r1jj1m9bch6z2p50bl";
|
sha256 = "08skw3h897jb71sbnglj571h35pcb1mikzlh71sx5imjgi4hfczr";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig cmake xxd ];
|
nativeBuildInputs = [ pkgconfig cmake xxd ];
|
||||||
buildInputs = [ openssl libwebsockets json_c libuv ];
|
buildInputs = [ openssl libwebsockets json_c libuv zlib ];
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
outputs = [ "out" "man" ];
|
outputs = [ "out" "man" ];
|
||||||
|
Loading…
Reference in New Issue
Block a user