2021-01-25 08:26:54 +00:00
|
|
|
{ fetchFromGitHub, rustPlatform, lib }:
|
2020-09-26 11:33:56 +01:00
|
|
|
|
|
|
|
with rustPlatform;
|
|
|
|
|
|
|
|
buildRustPackage rec {
|
|
|
|
pname = "tarssh";
|
2021-02-06 21:01:17 +00:00
|
|
|
version = "0.7.0";
|
2020-09-26 11:33:56 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
|
|
|
owner = "Freaky";
|
|
|
|
repo = pname;
|
2021-02-06 21:01:17 +00:00
|
|
|
sha256 = "sha256-AoKc8VF6rqYIsijIfgvevwu+6+suOO7XQCXXgAPNgLk=";
|
2020-09-26 11:33:56 +01:00
|
|
|
};
|
|
|
|
|
2021-05-07 12:00:49 +01:00
|
|
|
cargoSha256 = "sha256-w1MNsMSGONsAAjyvAHjio2K88j1sqyP1Aqmw3EMya+c=";
|
2020-09-26 11:33:56 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-09-26 11:33:56 +01: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 ;
|
|
|
|
};
|
|
|
|
}
|