sshm: init at 1.8.0 (#449990)

This commit is contained in:
Fabian Affolter
2026-04-04 14:05:57 +00:00
committed by GitHub
2 changed files with 43 additions and 0 deletions
+6
View File
@@ -4551,6 +4551,12 @@
github = "cdombroski";
githubId = 244909;
};
cedev-1 = {
name = "Cedev";
email = "cedev@ce-dev.eu";
github = "cedev-1";
githubId = 121963179;
};
ceedubs = {
email = "ceedubs@gmail.com";
github = "ceedubs";
+37
View File
@@ -0,0 +1,37 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule (finalAttrs: {
pname = "sshm";
version = "1.10.0";
src = fetchFromGitHub {
owner = "Gu1llaum-3";
repo = "sshm";
tag = "v${finalAttrs.version}";
hash = "sha256-tDaRRZXj0XJ8XpCxs2b6Bm3qvfcE8t9CfR3mxuOrPDM=";
};
vendorHash = "sha256-aU/+bxcETs/Jq5FVAdiioyuc1AufvWeiqFQ7uo1cK1k=";
subPackages = [ "." ];
ldflags = [
"-s"
"-w"
"-X=github.com/Gu1llaum-3/sshm/cmd.AppVersion=${finalAttrs.version}"
];
meta = {
description = "Terminal UI to manage and connect to SSH hosts";
homepage = "https://github.com/Gu1llaum-3/sshm";
changelog = "https://github.com/Gu1llaum-3/sshm/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ cedev-1 ];
mainProgram = "sshm";
};
})