2021-05-18 17:04:13 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, openssl, rustPlatform, libiconv
|
|
|
|
, Security, makeWrapper, bash }:
|
2019-03-10 03:43:27 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 11:41:23 +00:00
|
|
|
pname = "websocat";
|
2022-09-25 19:16:28 +00:00
|
|
|
version = "1.11.0";
|
2019-03-10 03:43:27 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2019-12-05 16:40:54 +00:00
|
|
|
owner = "vi";
|
2021-04-20 19:25:40 +00:00
|
|
|
repo = pname;
|
2019-12-05 16:40:54 +00:00
|
|
|
rev = "v${version}";
|
2022-09-25 19:16:28 +00:00
|
|
|
sha256 = "sha256-FomP5ykHc5oAA7zF7r+PXHf30KaTmYTmVm6Mwf/tPdQ=";
|
2019-03-10 03:43:27 +00:00
|
|
|
};
|
|
|
|
|
2022-09-25 19:16:28 +00:00
|
|
|
cargoSha256 = "sha256-YVI1+WsDMoznRTjnzwlPTdJMRPsQFYtzssoU0sQwQfA=";
|
2019-03-10 03:43:27 +00:00
|
|
|
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ pkg-config makeWrapper ];
|
2021-05-18 17:04:13 +00:00
|
|
|
buildInputs = [ openssl ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ libiconv Security ];
|
2019-03-19 08:21:18 +00:00
|
|
|
|
2021-11-16 00:12:55 +00:00
|
|
|
buildFeatures = [ "ssl" ];
|
|
|
|
|
2021-04-20 19:25:40 +00:00
|
|
|
# Needed to get openssl-sys to use pkg-config.
|
|
|
|
OPENSSL_NO_VENDOR=1;
|
|
|
|
|
2020-04-24 02:37:49 +00:00
|
|
|
# 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).
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/websocat \
|
2021-01-15 09:19:50 +00:00
|
|
|
--prefix PATH : ${lib.makeBinPath [ bash ]}
|
2020-04-24 02:37:49 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-12-05 16:40:54 +00:00
|
|
|
homepage = "https://github.com/vi/websocat";
|
2021-04-20 19:25:40 +00:00
|
|
|
description = "Command-line client for WebSockets (like netcat/socat)";
|
|
|
|
changelog = "https://github.com/vi/websocat/releases/tag/v${version}";
|
2019-12-05 16:40:54 +00:00
|
|
|
license = licenses.mit;
|
2020-11-17 11:02:06 +00:00
|
|
|
maintainers = with maintainers; [ thoughtpolice Br1ght0ne ];
|
2019-03-10 03:43:27 +00:00
|
|
|
};
|
|
|
|
}
|