nixpkgs-suyu/pkgs/servers/endlessh/default.nix

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

40 lines
871 B
Nix
Raw Normal View History

2022-10-22 14:53:35 +02:00
{ lib
, stdenv
, fetchFromGitHub
, testers
, endlessh
, nixosTests
}:
2019-05-21 03:00:00 +02:00
stdenv.mkDerivation rec {
pname = "endlessh";
version = "1.1";
2019-05-21 03:00:00 +02:00
src = fetchFromGitHub {
owner = "skeeto";
repo = pname;
rev = version;
2022-10-22 14:53:35 +02:00
hash = "sha256-yHQzDrjZycDL/2oSQCJjxbZQJ30FoixVG1dnFyTKPH4=";
2019-05-21 03:00:00 +02:00
};
makeFlags = [ "PREFIX=$(out)" ];
2022-10-22 14:53:35 +02:00
passthru.tests = {
inherit (nixosTests) endlessh;
version = testers.testVersion {
package = endlessh;
command = "endlessh -V";
};
};
meta = with lib; {
2019-05-21 03:00:00 +02:00
description = "SSH tarpit that slowly sends an endless banner";
homepage = "https://github.com/skeeto/endlessh";
changelog = "https://github.com/skeeto/endlessh/releases/tag/${version}";
2019-05-21 03:00:00 +02:00
license = licenses.unlicense;
2022-10-22 14:53:35 +02:00
maintainers = with maintainers; [ azahi marsam ];
2019-05-21 03:00:00 +02:00
platforms = platforms.unix;
2023-11-27 02:17:53 +01:00
mainProgram = "endlessh";
2019-05-21 03:00:00 +02:00
};
}