summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/builder.sh
blob: 9c57a580847f12d96ab344e3b84150c6146864bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! /bin/sh

buildinputs=""
if test -n "$zlibSupport"; then
  buildinputs="$zlib $buildinputs"
fi
. $stdenv/setup

tar xvfj $src
cd Python-*
./configure --prefix=$out

make
make install