nixpkgs/pkgs/tools/misc/websocat/default.nix

35 lines
1.1 KiB
Nix
Raw Normal View History

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