summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorxeji <xeji@cat3.de>2018-02-20 12:47:34 +0100
committerxeji <xeji@cat3.de>2018-02-20 12:47:34 +0100
commit1cbccb95a7a0fee4bebdeb7b37ae2ecc51d3e685 (patch)
treef6747f4ecfe03dd197f7fe30a9801fdd50256f0a /pkgs/applications
parentbd83899f695b0f2f54482e0ee3f14303a9d7dfec (diff)
downloadnixpkgs-1cbccb95a7a0fee4bebdeb7b37ae2ecc51d3e685.tar
nixpkgs-1cbccb95a7a0fee4bebdeb7b37ae2ecc51d3e685.tar.gz
nixpkgs-1cbccb95a7a0fee4bebdeb7b37ae2ecc51d3e685.tar.bz2
nixpkgs-1cbccb95a7a0fee4bebdeb7b37ae2ecc51d3e685.tar.lz
nixpkgs-1cbccb95a7a0fee4bebdeb7b37ae2ecc51d3e685.tar.xz
nixpkgs-1cbccb95a7a0fee4bebdeb7b37ae2ecc51d3e685.tar.zst
nixpkgs-1cbccb95a7a0fee4bebdeb7b37ae2ecc51d3e685.zip
virtmanager: set platforms to linux
since dependency libvirt-glib currently doesn't build on Darwin
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/virtualization/virt-manager/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/virtualization/virt-manager/default.nix b/pkgs/applications/virtualization/virt-manager/default.nix
index fb573bf6c9e..9e18a6738c3 100644
--- a/pkgs/applications/virtualization/virt-manager/default.nix
+++ b/pkgs/applications/virtualization/virt-manager/default.nix
@@ -61,6 +61,8 @@ python2Packages.buildPythonApplication rec {
       manages Xen and LXC (linux containers).
     '';
     license = licenses.gpl2;
+    # exclude Darwin since libvirt-glib currently doesn't build there
+    platforms = platforms.linux;
     maintainers = with maintainers; [ qknight offline fpletz ];
   };
 }