nixpkgs/pkgs/development/interpreters/php/default.nix
Eelco Dolstra 8f4d8573c0 * Fix a bunch of URLs.
svn path=/nixpkgs/trunk/; revision=9292
2007-09-11 10:15:07 +00:00

24 lines
538 B
Nix

{stdenv, fetchurl, flex, bison, libxml2, apacheHttpd, unixODBC ? null, postgresql ? 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;
odbcSupport = unixODBC != null;
patches = [./fix.patch];
}