* Remove the old PHP.

svn path=/nixpkgs/trunk/; revision=22800
This commit is contained in:
Eelco Dolstra
2010-07-29 07:00:00 +00:00
parent 4b248a36b0
commit 5b2dcdd24d
4 changed files with 0 additions and 110 deletions

View File

@@ -1,23 +0,0 @@
{stdenv, fetchurl, flex, bison, libxml2, apacheHttpd, unixODBC ? null, postgresql ? null, mysql ? null}:
assert libxml2 != null;
stdenv.mkDerivation {
name = "php-5.2.4";
src = fetchurl {
url = http://nl3.php.net/distributions/php-5.2.4.tar.bz2;
sha256 = "1h513j7crz08n7rlh8v7cvxfzisj87mvvyfrkiaa76v1wicm4bsh";
};
inherit flex bison libxml2 apacheHttpd;
builder = ./builder.sh;
buildInputs = [flex bison libxml2 apacheHttpd];
inherit unixODBC postgresql mysql;
odbcSupport = unixODBC != null;
patches = [./fix.patch];
}