tarssh: init at 0.4.0

This commit is contained in:
sohalt 2020-09-26 12:33:56 +02:00
parent 1e501a4c9b
commit 3ed0b84b88
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ fetchFromGitHub, rustPlatform, stdenv }:
with rustPlatform;
buildRustPackage rec {
pname = "tarssh";
version = "0.4.0";
src = fetchFromGitHub {
rev = "v${version}";
owner = "Freaky";
repo = pname;
sha256 = "0fm0rwknhm39nhd6g0pnxby34i5gpmi5ri795d9ylsw0pqwz6kd0";
};
cargoSha256 = "108xdpgfgfd4z455snif0mzbla0rv8gjqxci5qgwjzfyshwkprgv";
meta = with stdenv.lib; {
description = "A simple SSH tarpit inspired by endlessh";
homepage = "https://github.com/Freaky/tarssh";
license = [ licenses.mit ];
maintainers = with maintainers; [ sohalt ];
platforms = platforms.unix ;
};
}

View file

@ -7323,6 +7323,8 @@ in
tarsnapper = callPackage ../tools/backup/tarsnapper { };
tarssh = callPackage ../servers/tarssh { };
tartube = callPackage ../applications/video/tartube { };
tayga = callPackage ../tools/networking/tayga { };