xen-guest-agent: format with nixfmt-rfc-style

Also adds myself as a maintainer.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>

authored by Fernando Rodrigues and committed by Alyssa Ross d50d09a7 2d51a4d3

+11 -5
+11 -5
pkgs/by-name/xe/xen-guest-agent/package.nix
··· 24 24 RUSTFLAGS = "-L ${xen-slim.out}/lib"; 25 25 }; 26 26 27 - nativeBuildInputs = [llvmPackages.clang xen-slim.out]; 27 + nativeBuildInputs = [ 28 + llvmPackages.clang 29 + xen-slim.out 30 + ]; 28 31 29 32 postFixup = '' 30 33 patchelf $out/bin/xen-guest-agent --add-rpath ${xen-slim.out}/lib 31 34 ''; 32 35 33 - meta = with lib; { 36 + meta = { 34 37 description = "Xen agent running in Linux/BSDs (POSIX) VMs"; 35 38 homepage = "https://gitlab.com/xen-project/xen-guest-agent"; 36 - license = licenses.agpl3Only; 37 - platforms = platforms.unix; 38 - maintainers = with maintainers; [matdibu]; 39 + license = lib.licenses.agpl3Only; 40 + platforms = lib.platforms.unix; 41 + maintainers = with lib.maintainers; [ 42 + matdibu 43 + sigmasquadron 44 + ]; 39 45 }; 40 46 }