summary refs log tree commit diff
path: root/pkgs/development/interpreters/php_configurable/default.nix
blob: d079c83f364b620c5e2b2df9f5409360a10487b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
let version = "5.2.6"; in

args: with args;

let inherit (args.composableDerivation) composableDerivation edf wwf; in

composableDerivation {
  initial = fixed : {

    name = "php_configurable-${version}";

    buildInputs = ["flex" "bison" "pkgconfig"];

    flags = {

# much left to do here...

      # SAPI modules:
      
        apxs2 = {
          configureFlags = ["--with-apxs2=${apacheHttpd}/bin/apxs"];
          buildInputs = [apacheHttpd];
        };

        # Extensions

        curl = {
          configureFlags = ["--with-curl=${args.curl}" "--with-curlwrappers"];
          buildInputs = [curl];
        };
        
        zlib = {
          configureFlags = ["--with-zlib=${args.zlib}"];
          buildInputs = [zlib];
        };

        libxml2 = {
          configureFlags = ["--with-libxml-dir=${libxml2}"];
          buildInputs = [ libxml2 ];
        };
      
        postgresql = {
          configureFlags = ["--with-pgsql=${postgresql}"];
          buildInputs = [ postgresql ];
        };
      
        mysql = {
          configureFlags = ["--with-mysql=${mysql}"];
          buildInputs = [ mysql ];
        };

        mysqli = {
          configureFlags = ["--with-mysqli=${mysql}/bin/mysql_config"];
          buildInputs = [ mysql];
        };

        mysqli_embedded = {
          configureFlags = ["--enable-embedded-mysqli"];
          depends = "mysqli";
          assertion = fixed.mysqliSupport;
        };

        pdo_mysql = {
          configureFlags = ["--with-pdo-mysql=${mysql}"];
          buildInputs = [ mysql ];
        };
      
        bcmath = {
          configureFlags = ["--enable-bcmath"];
        };

        gd = {
          configureFlags = ["--with-gd=${args.gd}"];
          buildInputs = [gd];
        };

        sockets = {
          configureFlags = ["--enable-sockets"];
        };

        openssl = {
          configureFlags = ["--with-openssl=${args.openssl}"];
          buildInputs = ["openssl"];
        };

        /*
           Building xdebug withing php to be able to add the parameters to the ini file.. Ther should be a better way
          meta = {
                  description = "debugging support for PHP";
                  homepage = http://xdebug.org;
                  license = "based on the PHP license - as is";
                  };
        */
        xdebug = {
          buildInputs = [ automake autoconf ];
          xdebug_src = args.fetchurl {
            name = "xdebug-2.0.2.tar.gz";
            url = "http://xdebug.org/link.php?url=xdebug202";
            sha256 = "1h0bxvf8krr203fmk1k7izrrr81gz537xmd3pqh4vslwdlbhrvic";
          };
        };
      };

    cfg = {
      mysqlSupport = true;
      mysqliSupport = true;
      pdo_mysqlSupport = true;
      libxml2Support = true;
      apxs2Support = true;
      bcmathSupport = true;
      socketsSupport = true;
      curlSupport = true;
      gettextSupport = true;
      postgresqlSupport = true;
      zlibSupport = true;
      opnesslSupport = true;
      xdebugSupport = true;
    };

    configurePhase = ''
      iniFile=$out/etc/$name.ini
      [[ -z "$libxml2" ]] || export PATH=$PATH:$libxml2/bin
      ./configure --with-config-file-scan-dir=/etc --with-config-file-path=$out/etc --prefix=$out  $configureFlags
      echo configurePhase end
    '';

    installPhase = ''
      unset installPhase; installPhase;
      cp php.ini-recommended $iniFile

      # Now Let's build xdebug if flag has been given
      # TODO I think there are better paths than the given below
      if [ -n $flag_set_xdebug ]; then
        PATH=$PATH:$out/bin
        tar xfz $xdebug_src;
        cd xdebug*
        phpize
        ./configure --prefix=$out
        make
        ensureDir $out/lib; cp modules/xdebug.so $out/lib
        cat >> $out/etc/php.ini << EOF
          zend_extension="$out/lib/xdebug.so"
          zend_extension_ts="$out/lib/xdebug.so"
          zend_extension_debug="$out/lib/xdebug.so"
          xdebug.remote_enable=true
          xdebug.remote_host=127.0.0.1
          xdebug.remote_port=9000
          xdebug.remote_handler=dbgp
          xdebug.profiler_enable=0
          xdebug.profiler_output_dir="/tmp/xdebug"
          xdebug.remote_mode=req
          max_execution_time = 300
          date.timezone = UTC
    EOF
      fi
    '';

    src = args.fetchurl {
      url = "http://nl.php.net/get/php-${version}.tar.bz2/from/this/mirror";
      md5 = "7380ffecebd95c6edb317ef861229ebd";
      name = "php-${version}.tar.bz2";
    };

    meta = {
      description = "The PHP language runtime engine";
      homepage = http://www.php.net/;
      license = "PHP-3";
    };

    patches = [./fix.patch];

  };

}