pkgs.ssh3: 0.1.7 -> 0.1.7

This commit is contained in:
Rouven Seifert 2024-04-10 00:30:18 +02:00
parent a2d754d2d1
commit 34104a42fb
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
2 changed files with 8 additions and 18 deletions

View file

@ -1,23 +1,18 @@
{ lib, buildGoModule, fetchFromGitHub, playerctl }: { lib, buildGoModule, fetchFromGitHub, playerctl }:
buildGoModule rec { buildGoModule rec {
pname = "ssh3"; pname = "ssh3";
version = "0.1.4"; version = "0.1.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "francoismichel"; owner = "francoismichel";
repo = "ssh3"; repo = "ssh3";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-0bd2hdvgapTGEGM7gdpVwxelN5BRbmdcgANbRHZ/nRw="; hash = "sha256-ZtQAJwGvNlJWUoDa6bS3AEdM3zbNMPQGdaIhR+yIonw=";
}; };
subPackages = [ "cli/client" ]; subPackages = [ "cmd/ssh3" ];
vendorHash = "sha256-VUNvb7m1nnH+mXUsnIKyPKJEVSMXBAaS4ihi5DZeFiI=";
vendorHash = "sha256-ZtKxAKNyMnZ8v96GUUm4EukdIJD+ITDW9kHOez7nYmg=";
postInstall = ''
mv $out/bin/client $out/bin/ssh3
'';
meta = with lib; { meta = with lib; {
description = "Faster and rich secure shell using HTTP/3"; description = "Faster and rich secure shell using HTTP/3";

View file

@ -1,25 +1,20 @@
{ lib, buildGoModule, libxcrypt, fetchFromGitHub, playerctl }: { lib, buildGoModule, libxcrypt, fetchFromGitHub, playerctl }:
buildGoModule rec { buildGoModule rec {
pname = "ssh3-server"; pname = "ssh3-server";
version = "0.1.4"; version = "0.1.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "francoismichel"; owner = "francoismichel";
repo = "ssh3"; repo = "ssh3";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-0bd2hdvgapTGEGM7gdpVwxelN5BRbmdcgANbRHZ/nRw="; hash = "sha256-ZtQAJwGvNlJWUoDa6bS3AEdM3zbNMPQGdaIhR+yIonw=";
}; };
subPackages = [ "cli/server" ]; subPackages = [ "cmd/ssh3-server" ];
buildInputs = [ libxcrypt ]; buildInputs = [ libxcrypt ];
vendorHash = "sha256-VUNvb7m1nnH+mXUsnIKyPKJEVSMXBAaS4ihi5DZeFiI=";
vendorHash = "sha256-ZtKxAKNyMnZ8v96GUUm4EukdIJD+ITDW9kHOez7nYmg=";
postInstall = ''
mv $out/bin/server $out/bin/ssh3-server
'';
meta = with lib; { meta = with lib; {
description = "Faster and rich secure shell using HTTP/3"; description = "Faster and rich secure shell using HTTP/3";