Merge pull request #119972 from hjones2199/websocat-1dot8
websocat: 1.6.0 -> 1.8.0
This commit is contained in:
commit
645e1fdb80
1 changed files with 9 additions and 5 deletions
|
@ -2,21 +2,24 @@
|
|||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "websocat";
|
||||
version = "1.6.0";
|
||||
version = "1.8.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vi";
|
||||
repo = "websocat";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0iilq96bxcb2fsljvlgy47pg514w0jf72ckz39yy3k0gwc1yfcja";
|
||||
sha256 = "sha256-jwoWxK4phBqhIeo3+oRnpGsfvtn9gTR1ryd4N+0Lmbw=";
|
||||
};
|
||||
|
||||
cargoBuildFlags = [ "--features=ssl" ];
|
||||
cargoSha256 = "1hsms8rlnds8npr8m0dm21h04ci5ljda09pqb598v7ny3j2dldiq";
|
||||
cargoSha256 = "sha256-+3SG1maarY4DJ4+QiYGwltGLksOoOhKtcqstRwgzi2k=";
|
||||
|
||||
nativeBuildInputs = [ pkg-config makeWrapper ];
|
||||
buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
|
||||
|
||||
# Needed to get openssl-sys to use pkg-config.
|
||||
OPENSSL_NO_VENDOR=1;
|
||||
|
||||
# The wrapping is required so that the "sh-c" option of websocat works even
|
||||
# if sh is not in the PATH (as can happen, for instance, when websocat is
|
||||
# started as a systemd service).
|
||||
|
@ -26,8 +29,9 @@ rustPlatform.buildRustPackage rec {
|
|||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Command-line client for WebSockets (like netcat/socat)";
|
||||
homepage = "https://github.com/vi/websocat";
|
||||
description = "Command-line client for WebSockets (like netcat/socat)";
|
||||
changelog = "https://github.com/vi/websocat/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ thoughtpolice Br1ght0ne ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue