depot/third_party/nixpkgs/pkgs/tools/virtualization/xe-guest-utilities/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

50 lines
1 KiB
Nix

{ lib
, buildGoModule
, fetchFromGitHub
, runtimeShell
}:
buildGoModule rec {
pname = "xe-guest-utilities";
version = "8.3.1";
src = fetchFromGitHub {
owner = "xenserver";
repo = "xe-guest-utilities";
rev = "v${version}";
hash = "sha256-d0WdezcT44ExeHSnoJ3Dn0u/IRlhWreOZPSVw6Q1h/w=";
};
deleteVendor = true;
vendorHash = "sha256-X/BI+ZhoqCGCmJfccyEBVgZc70aRTp3rL5j+rBWG5fE=";
postPatch = ''
substituteInPlace mk/xen-vcpu-hotplug.rules \
--replace "/bin/sh" "${runtimeShell}"
'';
buildPhase = ''
runHook preBuild
make RELEASE=nixpkgs
runHook postBuild
'';
installPhase = ''
runHook preInstall
install -Dt "$out"/bin build/stage/usr/{,s}bin/*
install -Dt "$out"/etc/udev/rules.d build/stage/etc/udev/rules.d/*
runHook postInstall
'';
meta = {
description = "XenServer guest utilities";
homepage = "https://github.com/xenserver/xe-guest-utilities";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ ];
platforms = lib.platforms.linux;
};
}