nixpkgs/pkgs/tools/misc/webcat/default.nix
Alexis Hildebrandt f8c4a98e8e treewide: Remove the definite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
2024-06-09 23:08:46 +02:00

31 lines
787 B
Nix

{ lib, buildGoModule, fetchFromGitHub, asciidoctor, installShellFiles }:
buildGoModule rec {
pname = "webcat";
version = "0.2.0";
src = fetchFromGitHub {
owner = "rumpelsepp";
repo = "webcat";
rev = "v${version}";
hash = "sha256-JyZHH8JgS3uoNVicx1wj0SAzlrXyTrpwIBZuok6buRw=";
};
vendorHash = "sha256-duVp/obT+5M4Dl3BAdSgRaP3+LKmS0y51loMMdoGysw=";
nativeBuildInputs = [ asciidoctor installShellFiles ];
postInstall = ''
make -C man man
installManPage man/webcat.1
'';
meta = with lib; {
homepage = "https://rumpelsepp.org/blog/ssh-through-websocket/";
description = "Lightweight swiss army knife for websockets";
license = licenses.gpl3Only;
maintainers = with maintainers; [ montag451 ];
mainProgram = "webcat";
};
}