nixpkgs/pkgs/development/interpreters/php/default.nix
Eelco Dolstra 3389f4bc36 * Copy lots of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=4623
2006-01-30 16:04:03 +00:00

19 lines
410 B
Nix

{stdenv, fetchurl, flex, bison, libxml2, apacheHttpd}:
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;
buildInputs = [flex bison libxml2 apacheHttpd];
builder = ./builder.sh;
patches = [./fix.patch];
}