2020-04-24 03:37:49 +01:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, openssl, rustPlatform, Security, makeWrapper, bash }:
|
2019-03-10 03:43:27 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 12:41:23 +01:00
|
|
|
pname = "websocat";
|
2020-07-12 16:04:27 +01:00
|
|
|
version = "1.6.0";
|
2019-03-10 03:43:27 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2019-12-05 16:40:54 +00:00
|
|
|
owner = "vi";
|
|
|
|
repo = "websocat";
|
|
|
|
rev = "v${version}";
|
2020-07-12 16:04:27 +01:00
|
|
|
sha256 = "0iilq96bxcb2fsljvlgy47pg514w0jf72ckz39yy3k0gwc1yfcja";
|
2019-03-10 03:43:27 +00:00
|
|
|
};
|
|
|
|
|
2019-06-04 09:28:04 +01:00
|
|
|
cargoBuildFlags = [ "--features=ssl" ];
|
2020-07-12 16:04:27 +01:00
|
|
|
cargoSha256 = "1hsms8rlnds8npr8m0dm21h04ci5ljda09pqb598v7ny3j2dldiq";
|
2019-03-10 03:43:27 +00:00
|
|
|
|
2020-04-24 03:37:49 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig makeWrapper ];
|
2019-06-04 09:28:04 +01:00
|
|
|
buildInputs = [ openssl ] ++ stdenv.lib.optional stdenv.isDarwin Security;
|
2019-03-19 08:21:18 +00:00
|
|
|
|
2020-04-24 03:37:49 +01: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 \
|
|
|
|
--prefix PATH : ${stdenv.lib.makeBinPath [ bash ]}
|
|
|
|
'';
|
|
|
|
|
2019-03-10 03:43:27 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Command-line client for WebSockets (like netcat/socat)";
|
2019-12-05 16:40:54 +00:00
|
|
|
homepage = "https://github.com/vi/websocat";
|
|
|
|
license = licenses.mit;
|
2019-12-05 16:41:12 +00:00
|
|
|
maintainers = with maintainers; [ thoughtpolice filalex77 ];
|
2019-12-05 16:40:54 +00:00
|
|
|
platforms = platforms.all;
|
2019-03-10 03:43:27 +00:00
|
|
|
};
|
|
|
|
}
|