Skip to content

Commit

Permalink
Merge pull request #334749 from urob/fix-qemu-full
Browse files Browse the repository at this point in the history
qemu_full: remove unavailable buildInputs
  • Loading branch information
adisbladis authored Aug 15, 2024
2 parents 1688a9b + 9dbe8e1 commit fcb437c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27112,7 +27112,11 @@ with pkgs;
prototool = callPackage ../development/tools/prototool { };

qemu_kvm = lowPrio (qemu.override { hostCpuOnly = true; });
qemu_full = lowPrio (qemu.override { smbdSupport = true; cephSupport = true; glusterfsSupport = true; });
qemu_full = lowPrio (qemu.override {
smbdSupport = lib.meta.availableOn stdenv.hostPlatform samba;
cephSupport = lib.meta.availableOn stdenv.hostPlatform ceph;
glusterfsSupport = lib.meta.availableOn stdenv.hostPlatform glusterfs && lib.meta.availableOn stdenv.hostPlatform libuuid;
});

# See `xenPackages` source for explanations.
# Building with `xen` instead of `xen-slim` is possible, but makes no sense.
Expand Down

0 comments on commit fcb437c

Please sign in to comment.