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";
|
||
|
|
};
|
||
|
|
}
|