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

35 lines
1.1 KiB
Nix
Raw Normal View History

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