From 027f42695c87cd97297ad72ad6828af4e45d631f Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 5 Nov 2010 14:49:42 +0000 Subject: [PATCH] The lxc package doesn't build on systems other than Linux. svn path=/nixpkgs/trunk/; revision=24608 --- pkgs/tools/system/lxc/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/system/lxc/default.nix b/pkgs/tools/system/lxc/default.nix index 773ee536fb8..5976d03fc33 100644 --- a/pkgs/tools/system/lxc/default.nix +++ b/pkgs/tools/system/lxc/default.nix @@ -20,6 +20,6 @@ stdenv.mkDerivation rec{ homepage = http://lxc.sourceforge.net; description = "lxc Linux Containers userland tools"; license = "LGPLv2.1+"; - platforms = with stdenv.lib.platforms; all; + platforms = stdenv.lib.platforms.linux; }; }