summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-01-30 13:57:16 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-01-30 13:57:16 +0100
commit82359bba65814a858c60aff5cdffdae3e76ff5c3 (patch)
treece3d6c626ffbd0efd2e59f0039183f4201fc11bc /pkgs
parente8a401a0c9d062d3ade7e02272e7d06a1eda06ff (diff)
downloadnixlib-82359bba65814a858c60aff5cdffdae3e76ff5c3.tar
nixlib-82359bba65814a858c60aff5cdffdae3e76ff5c3.tar.gz
nixlib-82359bba65814a858c60aff5cdffdae3e76ff5c3.tar.bz2
nixlib-82359bba65814a858c60aff5cdffdae3e76ff5c3.tar.lz
nixlib-82359bba65814a858c60aff5cdffdae3e76ff5c3.tar.xz
nixlib-82359bba65814a858c60aff5cdffdae3e76ff5c3.tar.zst
nixlib-82359bba65814a858c60aff5cdffdae3e76ff5c3.zip
python-3.3: Only build on Linux
It doesn't build on Darwin: http://hydra.nixos.org/build/8597946
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/interpreters/python/3.3/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/python/3.3/default.nix b/pkgs/development/interpreters/python/3.3/default.nix
index 36cb8158506f..84cb9dd141ab 100644
--- a/pkgs/development/interpreters/python/3.3/default.nix
+++ b/pkgs/development/interpreters/python/3.3/default.nix
@@ -69,8 +69,8 @@ stdenv.mkDerivation {
   enableParallelBuilding = true;
 
   meta = {
-    homepage = "http://python.org";
-    description = "a high-level dynamically-typed programming language";
+    homepage = http://python.org;
+    description = "A high-level dynamically-typed programming language";
     longDescription = ''
       Python is a remarkably powerful dynamic programming language that
       is used in a wide variety of application domains. Some of its key
@@ -81,7 +81,7 @@ stdenv.mkDerivation {
       high level dynamic data types.
     '';
     license = stdenv.lib.licenses.psfl;
-    platforms = stdenv.lib.platforms.all;
+    platforms = stdenv.lib.platforms.linux;
     maintainers = with stdenv.lib.maintainers; [ simons chaoflow ];
   };
 }