1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

multipass: reformat with nixfmt-rfc-style

This commit is contained in:
Jon Seager 2024-07-08 14:04:19 +01:00
parent fd2bd93f82
commit 9e5e340fb8
No known key found for this signature in database

View file

@ -1,26 +1,27 @@
{ cmake
, dnsmasq
, fetchFromGitHub
, git
, gtest
, iproute2
, iptables
, lib
, libapparmor
, libvirt
, libxml2
, nixosTests
, openssl
, OVMF
, pkg-config
, qemu
, qemu-utils
, qtbase
, qtwayland
, wrapQtAppsHook
, slang
, stdenv
, xterm
{
cmake,
dnsmasq,
fetchFromGitHub,
git,
gtest,
iproute2,
iptables,
lib,
libapparmor,
libvirt,
libxml2,
nixosTests,
openssl,
OVMF,
pkg-config,
qemu,
qemu-utils,
qtbase,
qtwayland,
wrapQtAppsHook,
slang,
stdenv,
xterm,
}:
let
@ -38,8 +39,7 @@ let
fetchSubmodules = true;
};
in
stdenv.mkDerivation
{
stdenv.mkDerivation {
inherit pname version;
src = fetchFromGitHub {
@ -118,15 +118,17 @@ stdenv.mkDerivation
nativeCheckInputs = [ gtest ];
postInstall = ''
wrapProgram $out/bin/multipassd --prefix PATH : ${lib.makeBinPath [
dnsmasq
iproute2
iptables
OVMF.fd
qemu
qemu-utils
xterm
]}
wrapProgram $out/bin/multipassd --prefix PATH : ${
lib.makeBinPath [
dnsmasq
iproute2
iptables
OVMF.fd
qemu
qemu-utils
xterm
]
}
'';
passthru.tests = {