Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
50 lines
1018 B
Nix
50 lines
1018 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildGoModule,
|
|
go-mockery,
|
|
versionCheckHook,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "sesh";
|
|
version = "2.18.1";
|
|
|
|
nativeBuildInputs = [
|
|
go-mockery
|
|
];
|
|
src = fetchFromGitHub {
|
|
owner = "joshmedeski";
|
|
repo = "sesh";
|
|
rev = "v${version}";
|
|
hash = "sha256-f63C2QFU5G/xoy6mLUSzgQv7VOJ4lv06OnGoyZy54rg=";
|
|
};
|
|
|
|
preBuild = ''
|
|
mockery
|
|
'';
|
|
vendorHash = "sha256-TLl8HZnsVvtx6jqusTETP0l3zTmzYmuV4NJIM958VcQ=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X main.version=${version}"
|
|
];
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
versionCheckKeepEnvironment = [ "HOME" ];
|
|
doInstallCheck = true;
|
|
|
|
meta = {
|
|
description = "Smart session manager for the terminal";
|
|
homepage = "https://github.com/joshmedeski/sesh";
|
|
changelog = "https://github.com/joshmedeski/sesh/releases/tag/${src.rev}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
gwg313
|
|
randomdude
|
|
t-monaghan
|
|
];
|
|
mainProgram = "sesh";
|
|
};
|
|
}
|