php 5.0.4
svn path=/nixpkgs/trunk/; revision=3806
This commit is contained in:
18
pkgs/development/interpreters/php/default.nix
Normal file
18
pkgs/development/interpreters/php/default.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{stdenv, fetchurl, flex, bison, libxml2, apacheHttpd}:
|
||||
|
||||
assert libxml2 != null;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "php-5.0.4";
|
||||
src = fetchurl {
|
||||
url = http://de.php.net/distributions/php-5.0.4.tar.bz2;
|
||||
md5 = "fb1aac107870f897d26563a9cc5053c0";
|
||||
};
|
||||
|
||||
inherit flex bison libxml2 apacheHttpd;
|
||||
|
||||
buildInputs = [flex bison libxml2 apacheHttpd];
|
||||
builder = ./builder.sh ;
|
||||
|
||||
patches = [./fix.patch];
|
||||
}
|
||||
Reference in New Issue
Block a user