nixpkgs/pkgs/servers/tarssh/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
638 B
Nix
Raw Normal View History

{ fetchFromGitHub, rustPlatform, lib }:
2020-09-26 13:33:56 +03:00
rustPlatform.buildRustPackage rec {
2020-09-26 13:33:56 +03:00
pname = "tarssh";
2021-02-07 00:01:17 +03:00
version = "0.7.0";
2020-09-26 13:33:56 +03:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "Freaky";
repo = pname;
2021-02-07 00:01:17 +03:00
sha256 = "sha256-AoKc8VF6rqYIsijIfgvevwu+6+suOO7XQCXXgAPNgLk=";
2020-09-26 13:33:56 +03:00
};
cargoSha256 = "sha256-w1MNsMSGONsAAjyvAHjio2K88j1sqyP1Aqmw3EMya+c=";
2020-09-26 13:33:56 +03:00
meta = with lib; {
2020-09-26 13:33:56 +03: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 ;
2023-11-24 00:09:35 +03:00
mainProgram = "tarssh";
2020-09-26 13:33:56 +03:00
};
}