mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
websocat: init at 1.3.0
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
ce96994032
commit
37fe6bf786
24
pkgs/tools/misc/websocat/default.nix
Normal file
24
pkgs/tools/misc/websocat/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchFromGitHub, rustPlatform
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
name = "websocat-${version}";
|
||||
version = "1.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vi";
|
||||
repo = "websocat";
|
||||
rev = "v${version}";
|
||||
sha256 = "1gf2snr12vnx2mhsrwkb5274r1pvdrf8m3bybrqbh8s9wd83nrh6";
|
||||
};
|
||||
|
||||
cargoSha256 = "0vkb3jmyb3zg3xiig5vlxhh74m27rvqbkgrwdqzprifn9vcj17ir";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Command-line client for WebSockets (like netcat/socat)";
|
||||
homepage = https://github.com/vi/websocat;
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = [ maintainers.thoughtpolice ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -22463,6 +22463,8 @@ in
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
websocat = callPackage ../tools/misc/websocat { };
|
||||
|
||||
epkowa = callPackage ../misc/drivers/epkowa { };
|
||||
|
||||
idsk = callPackage ../tools/filesystems/idsk { };
|
||||
|
Loading…
Reference in New Issue
Block a user