mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 00:22:13 +00:00
Merge pull request #140202 from montag451/webcat
webcat: init at unstable-2021-09-06
This commit is contained in:
commit
5cbbffa5b7
30
pkgs/tools/misc/webcat/default.nix
Normal file
30
pkgs/tools/misc/webcat/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ lib, buildGoModule, fetchFromGitea, asciidoctor, installShellFiles }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "webcat";
|
||||
version = "unstable-2021-09-06";
|
||||
|
||||
src = fetchFromGitea {
|
||||
domain = "codeberg.org";
|
||||
owner = "rumpelsepp";
|
||||
repo = "webcat";
|
||||
rev = "57a65558f0affac0b2f8f4831c52964eb9ad5386";
|
||||
sha256 = "15c62sjr15l5hwkvc4xarfn76341wi16pjv9qbr1agaz1vqgr6rd";
|
||||
};
|
||||
|
||||
vendorSha256 = "1apnra58mqrazbq53f0qlqnyyhjdvvdz995yridxva0fxmwpwcjy";
|
||||
|
||||
nativeBuildInputs = [ asciidoctor installShellFiles ];
|
||||
|
||||
postInstall = ''
|
||||
make -C man man
|
||||
installManPage man/webcat.1
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://rumpelsepp.org/blog/ssh-through-websocket/";
|
||||
description = "The lightweight swiss army knife for websockets";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ montag451 ];
|
||||
};
|
||||
}
|
|
@ -31603,6 +31603,8 @@ with pkgs;
|
|||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
webcat = callPackage ../tools/misc/webcat { };
|
||||
|
||||
websocat = callPackage ../tools/misc/websocat {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue