mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 21:33:07 +00:00
e554d7260d
- minor clean-up
67 lines
1.6 KiB
Nix
67 lines
1.6 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, coreutils
|
|
, makeWrapper
|
|
, google-guest-configs
|
|
, google-guest-oslogin
|
|
, iproute2
|
|
, procps
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "guest-agent";
|
|
version = "20230821.00";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "GoogleCloudPlatform";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-DP15KDnD09edBxOQDwP0cjVIFxjMzE1hu1Sbu6Faj9Y=";
|
|
};
|
|
|
|
vendorHash = "sha256-PGvyDjhLwIKhR6NmwzbzjfkBK+FqsziAdsybQmCbtCc=";
|
|
|
|
patches = [ ./disable-etc-mutation.patch ];
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
postPatch = ''
|
|
substitute ${./fix-paths.patch} fix-paths.patch \
|
|
--subst-var out \
|
|
--subst-var-by true "${coreutils}/bin/true"
|
|
patch -p1 < ./fix-paths.patch
|
|
'';
|
|
|
|
# We don't add `shadow` here; it's added to PATH if `mutableUsers` is enabled.
|
|
binPath = lib.makeBinPath [
|
|
google-guest-configs
|
|
google-guest-oslogin
|
|
iproute2
|
|
procps
|
|
];
|
|
|
|
# Skip tests which require networking.
|
|
preCheck = ''
|
|
rm google_guest_agent/wsfc_test.go
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/etc/systemd/system
|
|
cp *.service $out/etc/systemd/system
|
|
install -Dm644 instance_configs.cfg $out/etc/default/instance_configs.cfg
|
|
|
|
wrapProgram $out/bin/google_guest_agent \
|
|
--prefix PATH ":" "$binPath"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Guest Agent for Google Compute Engine";
|
|
homepage = "https://github.com/GoogleCloudPlatform/guest-agent";
|
|
changelog = "https://github.com/GoogleCloudPlatform/guest-agent/releases/tag/${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|