mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
67 lines
1.4 KiB
Nix
67 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
installShellFiles,
|
|
fetchFromGitHub,
|
|
gitUpdater,
|
|
testers,
|
|
mods,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "mods";
|
|
version = "1.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "charmbracelet";
|
|
repo = "mods";
|
|
rev = "v${version}";
|
|
hash = "sha256-1Qx3P1q7zmrzNqmiivri0BxdEsRYgS1cOp17S44jRPI=";
|
|
};
|
|
|
|
vendorHash = "sha256-LarOXYkyhSCMXkD2G3/XYHnj5bDcL6nwWxlMAYy+9d8=";
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=main.Version=${version}"
|
|
];
|
|
|
|
# These tests require internet access.
|
|
checkFlags = [ "-skip=^TestLoad/http_url$|^TestLoad/https_url$" ];
|
|
|
|
passthru = {
|
|
updateScript = gitUpdater {
|
|
rev-prefix = "v";
|
|
ignoredVersions = ".(rc|beta).*";
|
|
};
|
|
|
|
tests.version = testers.testVersion {
|
|
package = mods;
|
|
command = "HOME=$(mktemp -d) mods -v";
|
|
};
|
|
};
|
|
|
|
postInstall = ''
|
|
export HOME=$(mktemp -d)
|
|
$out/bin/mods man > mods.1
|
|
$out/bin/mods completion bash > mods.bash
|
|
$out/bin/mods completion fish > mods.fish
|
|
$out/bin/mods completion zsh > mods.zsh
|
|
|
|
installManPage mods.1
|
|
installShellCompletion mods.{bash,fish,zsh}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "AI on the command line";
|
|
homepage = "https://github.com/charmbracelet/mods";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dit7ya caarlos0 ];
|
|
mainProgram = "mods";
|
|
};
|
|
}
|