sshified: init at 1.2.1

This commit is contained in:
Joonas Rautiola 2024-10-26 19:54:05 +03:00
parent a8aecfa2c3
commit af9e3bb5ab
No known key found for this signature in database
GPG Key ID: 48E99D9C2C2DABE5

View File

@ -0,0 +1,36 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "sshified";
version = "1.2.1";
src = fetchFromGitHub {
owner = "hoffie";
repo = "sshified";
rev = "refs/tags/v${version}";
hash = "sha256-oCeuQ4Do+Lyqsf8hBH9qvLxWbWQlqol481VrbnAW2ic=";
};
vendorHash = null;
ldflags = [
"-s"
"-w"
"-X=main.Version=${version}"
];
subPackages = [ "." ];
meta = {
description = "Proxy HTTP requests through SSH";
homepage = "https://github.com/hoffie/sshified";
changelog = "https://github.com/hoffie/sshified/blob/v${version}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ joinemm ];
mainProgram = "sshified";
};
}