mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
bd4c69da51
Upstream provides a minimal systemd service that initialises the xen-guest-agent binary. This will be useful for anyone who makes a NixOS module for this package. Also adds a comment to postFixup. Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
53 lines
1.4 KiB
Nix
53 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitLab,
|
|
rustPlatform,
|
|
llvmPackages,
|
|
pkg-config,
|
|
xen-slim,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "xen-guest-agent";
|
|
version = "0.4.0-unstable-2024-05-31";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "xen-project";
|
|
repo = pname;
|
|
rev = "03aaadbe030f303b1503e172ee2abb6d0cab7ac6";
|
|
hash = "sha256-OhzRsRwDvt0Ov+nLxQSP87G3RDYSLREMz2w9pPtSUYg=";
|
|
};
|
|
|
|
cargoHash = "sha256-E6QKh4FFr6sLAByU5n6sLppFwPHSKtKffhQ7FfdXAu4=";
|
|
|
|
nativeBuildInputs = [
|
|
rustPlatform.bindgenHook
|
|
llvmPackages.clang
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [ xen-slim ];
|
|
|
|
postInstall =
|
|
# Install the sample systemd service.
|
|
''
|
|
mkdir --parents $out/lib/systemd/system
|
|
cp $src/startup/xen-guest-agent.service $out/lib/systemd/system
|
|
substituteInPlace $out/lib/systemd/system/xen-guest-agent.service \
|
|
--replace-fail "/usr/sbin/xen-guest-agent" "$out/bin/xen-guest-agent"
|
|
'';
|
|
|
|
postFixup =
|
|
# Add the Xen libraries in the runpath so the guest agent can find libxenstore.
|
|
"patchelf $out/bin/xen-guest-agent --add-rpath ${xen-slim.out}/lib";
|
|
|
|
meta = {
|
|
description = "Xen agent running in Linux/BSDs (POSIX) VMs";
|
|
homepage = "https://gitlab.com/xen-project/xen-guest-agent";
|
|
license = lib.licenses.agpl3Only;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [
|
|
matdibu
|
|
sigmasquadron
|
|
];
|
|
};
|
|
}
|