moribito: init at 0.2.6 (#443173)

This commit is contained in:
Sandro
2026-03-06 15:21:59 +00:00
committed by GitHub
2 changed files with 45 additions and 0 deletions
+6
View File
@@ -14519,6 +14519,12 @@
github = "kulczwoj";
githubId = 58049191;
};
kumpelinus = {
name = "Kumpelinus";
email = "linus@kump.dev";
github = "kumpelinus";
githubId = 174106140;
};
KunyaKud = {
name = "KunyaKud";
email = "wafuu@posteo.net";
+39
View File
@@ -0,0 +1,39 @@
{
lib,
stdenv,
buildGoModule,
fetchFromGitHub,
libx11,
nix-update-script,
}:
buildGoModule (finalAttrs: {
pname = "moribito";
version = "0.2.6";
src = fetchFromGitHub {
owner = "ericschmar";
repo = "moribito";
tag = "v${finalAttrs.version}";
hash = "sha256-/p7RVsz9jjPTVkEjhDsSHQmYVOsvpbb1APLGQYVjgiU=";
};
vendorHash = "sha256-O5OmVP5aGlc8Bz2nVAAkhCdTuonB9yXGSz5FO3FxJ1I=";
subPackages = [ "cmd/moribito" ];
# Clipboard support
env.CGO_ENABLED = 1;
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ libx11 ];
passthru.updateScript = nix-update-script { };
meta = {
description = "Terminal LDAP explorer";
homepage = "https://github.com/ericschmar/moribito";
changelog = "https://github.com/ericschmar/moribito/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ kumpelinus ];
mainProgram = "moribito";
};
})