websocat: fix wrapping
This commit is contained in:
parent
e170e0e85f
commit
1f57d5e060
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, pkgconfig, openssl, rustPlatform, Security }:
|
{ stdenv, fetchFromGitHub, pkgconfig, openssl, rustPlatform, Security, makeWrapper, bash }:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "websocat";
|
pname = "websocat";
|
||||||
@ -14,9 +14,17 @@ rustPlatform.buildRustPackage rec {
|
|||||||
cargoBuildFlags = [ "--features=ssl" ];
|
cargoBuildFlags = [ "--features=ssl" ];
|
||||||
cargoSha256 = "09chj0bgf4r8v5cjq0hvb84zvh98nrzrh1m0wdqjy5gi7zc30cis";
|
cargoSha256 = "09chj0bgf4r8v5cjq0hvb84zvh98nrzrh1m0wdqjy5gi7zc30cis";
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig makeWrapper ];
|
||||||
buildInputs = [ openssl ] ++ stdenv.lib.optional stdenv.isDarwin Security;
|
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; {
|
meta = with stdenv.lib; {
|
||||||
description = "Command-line client for WebSockets (like netcat/socat)";
|
description = "Command-line client for WebSockets (like netcat/socat)";
|
||||||
homepage = "https://github.com/vi/websocat";
|
homepage = "https://github.com/vi/websocat";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user