nixpkgs/pkgs/development/tools/sshs/default.nix

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

32 lines
691 B
Nix
Raw Normal View History

2024-07-16 09:35:27 +00:00
{
lib,
rustPlatform,
fetchFromGitHub,
testers,
sshs,
2022-07-10 19:40:31 +00:00
}:
2024-03-06 09:04:44 +00:00
rustPlatform.buildRustPackage rec {
2022-07-10 19:40:31 +00:00
pname = "sshs";
2024-07-16 09:34:57 +00:00
version = "4.4.1";
2022-07-10 19:40:31 +00:00
src = fetchFromGitHub {
owner = "quantumsheep";
2024-07-16 09:34:57 +00:00
repo = "sshs";
2022-07-10 19:40:31 +00:00
rev = version;
2024-07-16 09:34:57 +00:00
hash = "sha256-07iivB9U0rFnoohjBX7EfdoDq4VDMALWy4CWiSrrg58=";
2022-07-10 19:40:31 +00:00
};
2024-07-16 09:34:57 +00:00
cargoHash = "sha256-W6PuwDcb2VAGX7bfeZtr/xNuLRTUCUgTc/KvvUinv7k=";
2022-07-10 19:40:31 +00:00
2024-07-16 09:35:27 +00:00
passthru.tests.version = testers.testVersion { package = sshs; };
2022-07-10 19:40:31 +00:00
2024-07-16 09:34:57 +00:00
meta = {
2022-07-10 19:40:31 +00:00
description = "Terminal user interface for SSH";
homepage = "https://github.com/quantumsheep/sshs";
2024-07-16 09:34:57 +00:00
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ not-my-segfault ];
2024-03-06 09:04:44 +00:00
mainProgram = "sshs";
2022-07-10 19:40:31 +00:00
};
}