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
44 lines
851 B
Nix
44 lines
851 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "smug";
|
|
version = "0.3.8";
|
|
|
|
subPackages = [ "." ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ivaaaan";
|
|
repo = "smug";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-m6yK7WPfrItIR3ULJgnw+oysX+zlotiIZMyr4SkPPdM=";
|
|
};
|
|
|
|
vendorHash = "sha256-vaDUzVRmpmNn8/vUPeR1U5N6T4llFRIk9A1lum8uauU=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=main.version=${version}"
|
|
];
|
|
|
|
postInstall = ''
|
|
installManPage ./man/man1/smug.1
|
|
installShellCompletion completion/smug.{bash,fish}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ivaaaan/smug";
|
|
description = "tmux session manager";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ juboba ];
|
|
mainProgram = "smug";
|
|
};
|
|
}
|