assh: 2.7.0 -> 2.10.0, use buildGoModule

This commit is contained in:
Jonathan Ringer 2020-07-07 13:55:08 -07:00 committed by Jon
parent bd5314f6e2
commit 4d125366a3

View File

@ -1,11 +1,17 @@
{ stdenv, buildGoPackage, fetchFromGitHub, openssh, makeWrapper }: { stdenv, buildGoModule, fetchFromGitHub, openssh, makeWrapper }:
buildGoPackage rec { buildGoModule rec {
pname = "assh"; pname = "assh";
version = "2.7.0"; version = "2.10.0";
goPackagePath = "github.com/moul/advanced-ssh-config"; src = fetchFromGitHub {
subPackages = [ "cmd/assh" ]; repo = "advanced-ssh-config";
owner = "moul";
rev = "v${version}";
sha256 = "0qsb5p52v961akshgs1yla2d7lhcbwixv2skqaappdmhj18a23q2";
};
vendorSha256 = "03ycjhal4g7bs9fhzrq01ijj48czvs272qcqkd9farsha5gf0q0b";
nativeBuildInputs = [ makeWrapper ]; nativeBuildInputs = [ makeWrapper ];
@ -14,16 +20,15 @@ buildGoPackage rec {
--prefix PATH : ${openssh}/bin --prefix PATH : ${openssh}/bin
''; '';
src = fetchFromGitHub { doInstallCheck = true;
repo = "advanced-ssh-config"; installCheckPhase = ''
owner = "moul"; $out/bin/assh --help > /dev/null
rev = "v${version}"; '';
sha256 = "0jfpcr8990lb7kacadbishdkz5l8spw24ksdlb79x34sdbbp3fm6";
};
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Advanced SSH config - Regex, aliases, gateways, includes and dynamic hosts"; description = "Advanced SSH config - Regex, aliases, gateways, includes and dynamic hosts";
homepage = "https://github.com/moul/advanced-ssh-config"; homepage = "https://github.com/moul/assh";
changelog = "https://github.com/moul/assh/releases/tag/v${version}";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ zzamboni ]; maintainers = with maintainers; [ zzamboni ];
platforms = with platforms; linux ++ darwin; platforms = with platforms; linux ++ darwin;