Merge pull request #99480 from Sohalt/tarssh

tarssh: init at 0.4.0
This commit is contained in:
Anderson Torres 2020-10-29 08:35:40 -03:00 committed by GitHub
commit 7cb747c3b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

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