moved pysqlite into PYTHON MODULES section
svn path=/nixpkgs/trunk/; revision=12964
This commit is contained in:
@@ -1,21 +0,0 @@
|
||||
source $stdenv/setup
|
||||
|
||||
configurePhase() {
|
||||
substituteInPlace "setup.cfg" \
|
||||
--replace "/usr/local/include" "$sqlite/include" \
|
||||
--replace "/usr/local/lib" "$sqlite/lib"
|
||||
cp setup.cfg /tmp
|
||||
}
|
||||
configurePhase=configurePhase
|
||||
|
||||
buildPhase() {
|
||||
$python/bin/python setup.py build
|
||||
}
|
||||
buildPhase=buildPhase
|
||||
|
||||
installPhase() {
|
||||
$python/bin/python setup.py install --prefix=$out
|
||||
}
|
||||
installPhase=installPhase
|
||||
|
||||
genericBuild
|
||||
@@ -1,12 +0,0 @@
|
||||
{stdenv, fetchurl, python, sqlite}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "pysqlite-2.2.2";
|
||||
src = fetchurl {
|
||||
url = http://initd.org/pub/software/pysqlite/releases/2.2/2.2.2/pysqlite-2.2.2.tar.gz;
|
||||
md5 = "3260547d3f11c85613b2de8ed529a4fc";
|
||||
};
|
||||
builder = ./builder.sh;
|
||||
|
||||
inherit stdenv python sqlite;
|
||||
}
|
||||
Reference in New Issue
Block a user