linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / networking / hss / default.nix
blob77f96113decf47a831c2929bb75b554f031cf2f6
1 { lib, buildRubyGem, ruby, openssh }:
3 # Example ~/.hss.yml
4 #---
5 #patterns:
6 #  - note: Basic test
7 #    example: g -> github
8 #    short: '^g$'
9 #    long: 'git@github.com'
11 buildRubyGem rec {
12   name = "hss-${version}";
13   inherit ruby;
14   gemName = "hss";
15   version = "1.0.1";
16   source.sha256 = "0hdfpxxqsh6gisn8mm0knsl1aig9fir0h2x9sirk3gr36qbz5xa4";
18   postInstall = ''
19    substituteInPlace $GEM_HOME/gems/${gemName}-${version}/bin/hss \
20      --replace \
21        "'ssh'" \
22        "'${openssh}/bin/ssh'"
23   '';
25   meta = with lib; {
26     description = ''
27       A SSH helper that uses regex and fancy expansion to dynamically manage SSH shortcuts.
28     '';
29     homepage    = "https://github.com/akerl/hss";
30     license     = licenses.mit;
31     maintainers = with maintainers; [ nixy ];
32     platforms   = platforms.unix;
33   };