mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
29 lines
839 B
Nix
29 lines
839 B
Nix
|
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
||
|
|
||
|
buildGoPackage rec {
|
||
|
name = "assh-${version}";
|
||
|
version = "2.6.0";
|
||
|
|
||
|
goPackagePath = "github.com/moul/advanced-ssh-config";
|
||
|
subPackages = [ "cmd/assh" ];
|
||
|
|
||
|
postInstall = stdenv.lib.optionalString (stdenv.isDarwin) ''
|
||
|
install_name_tool -delete_rpath $out/lib $bin/bin/assh
|
||
|
'';
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
repo = "advanced-ssh-config";
|
||
|
owner = "moul";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "1vv98dz5822k51xklnmky0lwfjw8nc6ryvn8lmv9n63ppwh9s2s6";
|
||
|
};
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Advanced SSH config - Regex, aliases, gateways, includes and dynamic hosts";
|
||
|
homepage = https://github.com/moul/advanced-ssh-config;
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ zzamboni ];
|
||
|
platforms = with platforms; linux ++ darwin;
|
||
|
};
|
||
|
}
|