mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 13:23:11 +01:00
28 lines
731 B
Nix
28 lines
731 B
Nix
{ lib, buildGoModule, libxcrypt, fetchFromGitHub, playerctl }:
|
|
buildGoModule rec {
|
|
pname = "ssh3-server";
|
|
version = "0.1.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "francoismichel";
|
|
repo = "ssh3";
|
|
rev = "v${version}";
|
|
hash = "sha256-ZtQAJwGvNlJWUoDa6bS3AEdM3zbNMPQGdaIhR+yIonw=";
|
|
};
|
|
|
|
subPackages = [ "cmd/ssh3-server" ];
|
|
|
|
buildInputs = [ libxcrypt ];
|
|
|
|
vendorHash = "sha256-VUNvb7m1nnH+mXUsnIKyPKJEVSMXBAaS4ihi5DZeFiI=";
|
|
|
|
meta = with lib; {
|
|
description = "Faster and rich secure shell using HTTP/3";
|
|
homepage = "https://github.com/francoismichel/ssh3";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ therealr5 ];
|
|
mainProgram = "ssh3";
|
|
platforms = platforms.all;
|
|
};
|
|
}
|