python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / sshs / default.nix
blobc3fa7ce5cbdd15c32efac1174c7c888b1135ae30
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 , nix-update-script
5 }:
7 buildGoModule rec {
8   pname = "sshs";
9   version = "3.4.0";
11   src = fetchFromGitHub {
12     owner = "quantumsheep";
13     repo = pname;
14     rev = version;
15     sha256 = "KD971dGm1oQt9GbiUGZm2k4SJrBAA9rnHj7Gu0t3SJw=";
16   };
18   vendorSha256 = "OCh37wjSs40Q0VQmoc1nXQ4nWddnoUCrI5xgxpxR/Ec=";
20   ldflags = [ "-s" "-w" "-X github.com/quantumsheep/sshs/cmd.Version=${version}" ];
22   passthru.updateScript = nix-update-script {
23     attrPath = pname;
24   };
26   meta = with lib; {
27     description = "Terminal user interface for SSH";
28     homepage = "https://github.com/quantumsheep/sshs";
29     license = licenses.mit;
30     maintainers = with maintainers; [ not-my-segfault ];
31   };