nixpkgs/pkgs/development/interpreters/php/default.nix
Rob Vermaas d05cdd8064 added config flag for postrgres support
svn path=/nixpkgs/trunk/; revision=5668
2006-07-09 15:00:37 +00:00

24 lines
516 B
Nix

{stdenv, fetchurl, flex, bison, libxml2, apacheHttpd, unixODBC ? null, postgresql ? null}:
assert libxml2 != null;
stdenv.mkDerivation {
name = "php-5.0.4";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/php-5.0.4.tar.bz2;
md5 = "fb1aac107870f897d26563a9cc5053c0";
};
inherit flex bison libxml2 apacheHttpd;
builder = ./builder.sh;
buildInputs = [flex bison libxml2 apacheHttpd];
inherit unixODBC postgresql;
odbcSupport = unixODBC != null;
patches = [./fix.patch];
}