From 8d52c9066e0e124ec8c28f436b6359e2b01c2acd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Sat, 14 Dec 2013 14:22:29 +0100 Subject: [PATCH] python-pycollada: set meta.platforms to only linux, darwin It doesn't build on the BSDs (or actually, it's dependencies). --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 37be149fc1b..33d4f5734e2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1132,7 +1132,7 @@ pythonPackages = modules // import ./python-packages-generated.nix { description = "Python library for reading and writing collada documents"; homepage = http://pycollada.github.io/; license = "BSD"; # they don't specify which BSD variant - platforms = platforms.unix; + platforms = with platforms; linux ++ darwin; maintainers = [ maintainers.bjornfor ]; }; };