websocat: add support for wss://

wip/yesman
volth 5 years ago committed by Austin Seipp
parent 6500ab9e61
commit 51f4e75025
  1. 6
      pkgs/tools/misc/websocat/default.nix

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, rustPlatform, Security
{ stdenv, fetchFromGitHub, pkgconfig, openssl, rustPlatform, Security
}:
rustPlatform.buildRustPackage rec {
@ -12,9 +12,11 @@ rustPlatform.buildRustPackage rec {
sha256 = "1gf2snr12vnx2mhsrwkb5274r1pvdrf8m3bybrqbh8s9wd83nrh6";
};
cargoBuildFlags = [ "--features=ssl" ];
cargoSha256 = "1zqfvbihf8xwgh092n9wzm3mdgbv0n99gjsfk9przqj2vh7wfvh2";
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl ] ++ stdenv.lib.optional stdenv.isDarwin Security;
meta = with stdenv.lib; {
description = "Command-line client for WebSockets (like netcat/socat)";

Loading…
Cancel
Save