mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 09:23:37 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
95 lines
2.4 KiB
Nix
95 lines
2.4 KiB
Nix
{
|
|
buildGo122Module,
|
|
fetchFromGitHub,
|
|
lib,
|
|
}:
|
|
|
|
let
|
|
generic =
|
|
{
|
|
subPackages,
|
|
pname,
|
|
postInstall ? "",
|
|
mainProgram,
|
|
}:
|
|
buildGo122Module rec {
|
|
inherit pname;
|
|
version = "6.11.0";
|
|
shortRev = "9587df6"; # for internal version info
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sensu";
|
|
repo = "sensu-go";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Vcay8vUYLjV65g526btQX0+m5n/cRocIKx7C2LuWeP4=";
|
|
};
|
|
|
|
inherit subPackages postInstall;
|
|
|
|
vendorHash = "sha256-ADqU/ZJiyZ5hAkqFXExmA8fSZxzhx42QptYu3TIlgBc=";
|
|
|
|
patches = [
|
|
# Without this, we get error messages like:
|
|
# vendor/golang.org/x/sys/unix/mremap.go:41:10: unsafe.Slice requires go1.17 or later (-lang was set to go1.16; check go.mod)
|
|
# The patch was generated by changing "go 1.16" to "go 1.21" and executing `go mod tidy`.
|
|
./fix-go-version-error.patch
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
ldflags =
|
|
let
|
|
versionPkg = "github.com/sensu/sensu-go/version";
|
|
in
|
|
[
|
|
"-X ${versionPkg}.Version=${version}"
|
|
"-X ${versionPkg}.BuildSHA=${shortRev}"
|
|
];
|
|
|
|
meta = {
|
|
inherit mainProgram;
|
|
homepage = "https://sensu.io";
|
|
description = "Open source monitoring tool for ephemeral infrastructure & distributed applications";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
thefloweringash
|
|
teutat3s
|
|
];
|
|
};
|
|
};
|
|
in
|
|
{
|
|
sensu-go-cli = generic {
|
|
pname = "sensu-go-cli";
|
|
subPackages = [ "cmd/sensuctl" ];
|
|
postInstall = ''
|
|
mkdir -p \
|
|
"''${!outputBin}/share/bash-completion/completions" \
|
|
"''${!outputBin}/share/zsh/site-functions"
|
|
|
|
''${!outputBin}/bin/sensuctl completion bash > ''${!outputBin}/share/bash-completion/completions/sensuctl
|
|
|
|
# https://github.com/sensu/sensu-go/issues/3132
|
|
(
|
|
echo "#compdef sensuctl"
|
|
''${!outputBin}/bin/sensuctl completion zsh
|
|
echo '_complete sensuctl 2>/dev/null'
|
|
) > ''${!outputBin}/share/zsh/site-functions/_sensuctl
|
|
|
|
'';
|
|
mainProgram = "sensuctl";
|
|
};
|
|
|
|
sensu-go-backend = generic {
|
|
pname = "sensu-go-backend";
|
|
subPackages = [ "cmd/sensu-backend" ];
|
|
mainProgram = "sensu-backend";
|
|
};
|
|
|
|
sensu-go-agent = generic {
|
|
pname = "sensu-go-agent";
|
|
subPackages = [ "cmd/sensu-agent" ];
|
|
mainProgram = "sensu-agent";
|
|
};
|
|
}
|