Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sshified: init at 1.2.1 #351532

Merged
merged 2 commits into from
Oct 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10494,6 +10494,13 @@
githubId = 168684553;
name = "João Marques";
};
joinemm = {
email = "[email protected]";
github = "joinemm";
githubId = 26210439;
name = "Joonas Rautiola";
keys = [ { fingerprint = "87EC DD30 6614 E510 5299 F0D4 090E B48A 4669 AA54"; } ];
};
jojosch = {
name = "Johannes Schleifenbaum";
email = "[email protected]";
Expand Down
36 changes: 36 additions & 0 deletions pkgs/by-name/ss/sshified/package.nix
Original file line number Diff line number Diff line change
@@ -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";
joinemm marked this conversation as resolved.
Show resolved Hide resolved
changelog = "https://github.com/hoffie/sshified/blob/v${version}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ joinemm ];
mainProgram = "sshified";
};
}