From f0f900f41b6a55866b1e7642d7185ae8231f5d09 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 5 May 2011 14:41:08 +0000 Subject: [PATCH] pkgs/development/interpreters/python/2.7/default.nix: strip trailing whitespace svn path=/nixpkgs/trunk/; revision=27163 --- pkgs/development/interpreters/python/2.7/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/interpreters/python/2.7/default.nix b/pkgs/development/interpreters/python/2.7/default.nix index 3b9b929ef40..3b95c1d246c 100644 --- a/pkgs/development/interpreters/python/2.7/default.nix +++ b/pkgs/development/interpreters/python/2.7/default.nix @@ -18,7 +18,7 @@ let url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.bz2"; sha256 = "14i2c7yqa7ljmx2i2bb827n61q33zn23ax96czi8rbkyyny8gqw0"; }; - + patches = [ # Look in C_INCLUDE_PATH and LIBRARY_PATH for stuff. ./search-path.patch @@ -36,12 +36,12 @@ let ++ optional zlibSupport zlib ++ optionals stdenv.isDarwin [ darwinArchUtility darwinSwVersUtility ]; - + # Build the basic Python interpreter without modules that have # external dependencies. python = stdenv.mkDerivation { name = "python-${version}"; - + inherit majorVersion version src patches buildInputs; C_INCLUDE_PATH = concatStringsSep ":" (map (p: "${p}/include") buildInputs); @@ -181,5 +181,5 @@ let }; }; - + in python // { inherit modules; }