2022-07-14 12:49:19 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, fioctl }:
|
2021-03-20 04:20:00 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "fioctl";
|
2024-06-05 15:53:02 +00:00
|
|
|
version = "0.42";
|
2021-03-20 04:20:00 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "foundriesio";
|
|
|
|
repo = "fioctl";
|
|
|
|
rev = "v${version}";
|
2024-06-05 15:53:02 +00:00
|
|
|
sha256 = "sha256-UqUr57D5nZh+zanzCmxujLbA8eICKx0NUlP78YH8x/Q=";
|
2021-03-20 04:20:00 +00:00
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
vendorHash = "sha256-A5buz9JOAiXx9X4qmi7mTMJiy/E6XBaFlG/sXOG5AKw=";
|
2021-03-20 04:20:00 +00:00
|
|
|
|
2021-08-27 14:25:00 +00:00
|
|
|
ldflags = [
|
2022-07-14 12:49:19 +00:00
|
|
|
"-s" "-w"
|
|
|
|
"-X github.com/foundriesio/fioctl/subcommands/version.Commit=${src.rev}"
|
2021-08-27 14:25:00 +00:00
|
|
|
];
|
2021-03-20 04:20:00 +00:00
|
|
|
|
2022-07-14 12:49:19 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
installShellCompletion --cmd fioctl \
|
|
|
|
--bash <($out/bin/fioctl completion bash) \
|
|
|
|
--fish <($out/bin/fioctl completion fish) \
|
|
|
|
--zsh <($out/bin/fioctl completion zsh)
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
|
|
package = fioctl;
|
|
|
|
command = "HOME=$(mktemp -d) fioctl version";
|
|
|
|
version = "v${version}";
|
|
|
|
};
|
|
|
|
|
2021-03-20 04:20:00 +00:00
|
|
|
meta = with lib; {
|
2022-07-14 12:49:19 +00:00
|
|
|
description = "A simple CLI to manage your Foundries Factory";
|
2021-03-20 04:20:00 +00:00
|
|
|
homepage = "https://github.com/foundriesio/fioctl";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ nixinator matthewcroughan ];
|
2024-02-29 20:09:43 +00:00
|
|
|
mainProgram = "fioctl";
|
2021-03-20 04:20:00 +00:00
|
|
|
};
|
|
|
|
}
|