fast-ssh: init at 0.3.1

This commit is contained in:
Fabian Affolter 2021-12-26 00:34:43 +01:00
parent 9ec14cd78d
commit d03a75a45a
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "fast-ssh";
version = "0.3.1";
src = fetchFromGitHub {
owner = "julien-r44";
repo = "fast-ssh";
rev = "v${version}";
sha256 = "sha256-eHJdMe8RU6Meg/9+NCfIneD5BqNUc2yIiQ8Z5UqUBUI=";
};
cargoSha256 = "sha256-sIQNoH3UWX3SwCFCPZEREIFR7C28ml4oGsrq6wuOAT0=";
buildInputs = lib.optional stdenv.isDarwin Security;
meta = with lib; {
description = "TUI tool to use the SSH config for connections";
homepage = "https://github.com/julien-r44/fast-ssh";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -2990,6 +2990,10 @@ with pkgs;
fast-cpp-csv-parser = callPackage ../development/libraries/fast-cpp-csv-parser { };
fast-ssh = callPackage ../tools/networking/fast-ssh {
inherit (darwin.apple_sdk.frameworks) Security;
};
faudio = callPackage ../development/libraries/faudio { };
fd = callPackage ../tools/misc/fd { };