about summary refs log tree commit diff
path: root/pkgs/tools/networking/hss/default.nix
blob: cfc9986b0db8e969fca7513a170e7b43b31ea266 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ lib, buildRubyGem, ruby, openssh }:

# Example ~/.hss.yml
#---
#patterns:
#  - note: Basic test
#    example: g -> github
#    short: '^g$'
#    long: 'git@github.com'

buildRubyGem rec {
  name = "hss-${version}";
  inherit ruby;
  gemName = "hss";
  version = "1.0.1";
  sha256 = "0hdfpxxqsh6gisn8mm0knsl1aig9fir0h2x9sirk3gr36qbz5xa4";

  postInstall = ''
   substituteInPlace $GEM_HOME/gems/${gemName}-${version}/bin/hss \
     --replace \
       "'ssh'" \
       "'${openssh}/bin/ssh'"
  '';

  meta = with lib; {
    description = ''
      A SSH helper that uses regex and fancy expansion to dynamically manage SSH shortcuts.
    '';
    homepage    = https://github.com/akerl/hss;
    license     = licenses.mit;
    maintainers = with maintainers; [ nixy ];
    platforms   = platforms.unix;
  };
}