mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
35 lines
1.1 KiB
Nix
35 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, pkgconfig, openssl, rustPlatform, Security, makeWrapper, bash }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "websocat";
|
|
version = "1.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vi";
|
|
repo = "websocat";
|
|
rev = "v${version}";
|
|
sha256 = "0iilq96bxcb2fsljvlgy47pg514w0jf72ckz39yy3k0gwc1yfcja";
|
|
};
|
|
|
|
cargoBuildFlags = [ "--features=ssl" ];
|
|
cargoSha256 = "1hsms8rlnds8npr8m0dm21h04ci5ljda09pqb598v7ny3j2dldiq";
|
|
|
|
nativeBuildInputs = [ pkgconfig makeWrapper ];
|
|
buildInputs = [ openssl ] ++ stdenv.lib.optional stdenv.isDarwin Security;
|
|
|
|
# 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)";
|
|
homepage = "https://github.com/vi/websocat";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ thoughtpolice Br1ght0ne ];
|
|
};
|
|
}
|