moribito: init at 0.2.6 (#443173)
This commit is contained in:
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user