nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 fetchFromGitHub,
4 rustPlatform,
5}:
6
7rustPlatform.buildRustPackage rec {
8 pname = "fast-ssh";
9 version = "0.3.2";
10
11 src = fetchFromGitHub {
12 owner = "julien-r44";
13 repo = "fast-ssh";
14 tag = "v${version}";
15 hash = "sha256-Wn1kwuY1tRJVe9DJexyQ/h+Z1gNtluj78QpBYjeCbSE=";
16 };
17
18 cargoHash = "sha256-qkvonLuS18BBPdBUUnIAbmA+9ZJZFmTRaewrnK9PHFE=";
19
20 meta = {
21 description = "TUI tool to use the SSH config for connections";
22 homepage = "https://github.com/julien-r44/fast-ssh";
23 license = lib.licenses.mit;
24 maintainers = with lib.maintainers; [ fab ];
25 mainProgram = "fast-ssh";
26 };
27}