about summary refs log tree commit diff
path: root/pkgs/development/interpreters/python
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2013-02-16 18:10:43 +0100
committerVladimír Čunát <vcunat@gmail.com>2013-02-16 18:10:43 +0100
commitdbcdc27e03b7f44a48519fc9a3530e42032719c4 (patch)
tree6ffba8ccbeab7689e19db8868f779c5e9947b779 /pkgs/development/interpreters/python
parent2f8616cc2eafd1c5235fdc1011ac381b670eb81d (diff)
downloadnixlib-dbcdc27e03b7f44a48519fc9a3530e42032719c4.tar
nixlib-dbcdc27e03b7f44a48519fc9a3530e42032719c4.tar.gz
nixlib-dbcdc27e03b7f44a48519fc9a3530e42032719c4.tar.bz2
nixlib-dbcdc27e03b7f44a48519fc9a3530e42032719c4.tar.lz
nixlib-dbcdc27e03b7f44a48519fc9a3530e42032719c4.tar.xz
nixlib-dbcdc27e03b7f44a48519fc9a3530e42032719c4.tar.zst
nixlib-dbcdc27e03b7f44a48519fc9a3530e42032719c4.zip
python3: fix libPrefix passthru
Diffstat (limited to 'pkgs/development/interpreters/python')
-rw-r--r--pkgs/development/interpreters/python/3.2/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/python/3.2/default.nix b/pkgs/development/interpreters/python/3.2/default.nix
index 64442f2e35b6..8600c5b9c820 100644
--- a/pkgs/development/interpreters/python/3.2/default.nix
+++ b/pkgs/development/interpreters/python/3.2/default.nix
@@ -58,7 +58,7 @@ stdenv.mkDerivation {
     readlineSupport = readline != null;
     opensslSupport = openssl != null;
     tkSupport = (tk != null) && (tcl != null) && (libX11 != null) && (xproto != null);
-    libPrefix = "python${majorVersion}";
+    libPrefix = "python${majorVersion}m";
   };
 
   enableParallelBuilding = true;