forked from mirrors/nixpkgs
hss: init at 1.0.1 (#25936)
* hss: init at 1.0.1 * hss: use buildRubyGem instead of bundler
This commit is contained in:
parent
b1b61d0988
commit
c3f434fd62
34
pkgs/tools/networking/hss/default.nix
Normal file
34
pkgs/tools/networking/hss/default.nix
Normal file
|
@ -0,0 +1,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;
|
||||
};
|
||||
}
|
|
@ -18817,4 +18817,6 @@ with pkgs;
|
|||
xib2nib = callPackage ../development/tools/xib2nib {};
|
||||
|
||||
linode-cli = callPackage ../tools/virtualization/linode-cli { };
|
||||
|
||||
hss = callPackage ../tools/networking/hss {};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue