evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ss / sshesame / package.nix
blob8f600712beccef1895e3593b9d9d245c8760a18b
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 , stdenv
5 , nix-update-script
6 }:
8 buildGoModule rec {
9   pname = "sshesame";
10   version = "0.0.39";
12   src = fetchFromGitHub {
13     owner = "jaksi";
14     repo = "sshesame";
15     rev = "v${version}";
16     hash = "sha256-h0qvi90gbWm4LCL3FeipW8BKkbuUt0xGMTjaaeYadnE=";
17   };
19   vendorHash = "sha256-1v+cNMr2jpLPfxusPsgnFN31DwuNntXuq3sDNpWL0Rg=";
21   ldflags = [ "-s" "-w" ];
23   hardeningEnable = lib.optionals (!stdenv.hostPlatform.isDarwin) [ "pie" ];
25   passthru.updateScript = nix-update-script { };
27   meta = {
28     description = "Easy to set up and use SSH honeypot";
29     longDescription = ''
30       A fake SSH server that lets anyone in and logs their activity.
31       sshesame accepts and logs SSH connections and activity (channels, requests),
32       without doing anything on the host (e.g. executing commands, making network requests).
33     '';
34     homepage = "https://github.com/jaksi/sshesame";
35     license = lib.licenses.asl20;
36     maintainers = with lib.maintainers; [ ];
37     mainProgram = "sshesame";
38   };