2021-01-25 09:26:54 +01:00
|
|
|
{ fetchFromGitHub, rustPlatform, lib }:
|
2020-09-26 12:33:56 +02:00
|
|
|
|
|
|
|
with rustPlatform;
|
|
|
|
|
|
|
|
buildRustPackage rec {
|
|
|
|
pname = "tarssh";
|
2020-12-01 11:07:55 +01:00
|
|
|
version = "0.5.0";
|
2020-09-26 12:33:56 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
|
|
|
owner = "Freaky";
|
|
|
|
repo = pname;
|
2020-12-01 11:07:55 +01:00
|
|
|
sha256 = "1waxfbw9lqbqv8igb291pjqg22324lzv4p7fsdfrkvxf95jd2i03";
|
2020-09-26 12:33:56 +02:00
|
|
|
};
|
|
|
|
|
2020-12-01 11:07:55 +01:00
|
|
|
cargoSha256 = "1f3anrh2y8yg7l4nilwk0a7c7kq5yvg07cqh75igjdb5a7p9di0j";
|
2020-09-26 12:33:56 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-09-26 12:33:56 +02:00
|
|
|
description = "A simple SSH tarpit inspired by endlessh";
|
|
|
|
homepage = "https://github.com/Freaky/tarssh";
|
|
|
|
license = [ licenses.mit ];
|
|
|
|
maintainers = with maintainers; [ sohalt ];
|
|
|
|
platforms = platforms.unix ;
|
|
|
|
};
|
|
|
|
}
|