1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-02 18:42:15 +00:00
nixpkgs/pkgs/tools/misc/websocat/default.nix

35 lines
1.1 KiB
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchFromGitHub, pkg-config, openssl, rustPlatform, Security, makeWrapper, bash }:
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";
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-06-04 09:28:04 +01:00
cargoBuildFlags = [ "--features=ssl" ];
2020-07-12 16:04:27 +01:00
cargoSha256 = "1hsms8rlnds8npr8m0dm21h04ci5ljda09pqb598v7ny3j2dldiq";
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config makeWrapper ];
2021-01-15 09:19:50 +00:00
buildInputs = [ openssl ] ++ 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 \
2021-01-15 09:19:50 +00:00
--prefix PATH : ${lib.makeBinPath [ bash ]}
2020-04-24 03:37:49 +01:00
'';
meta = with 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;
maintainers = with maintainers; [ thoughtpolice Br1ght0ne ];
};
}