php-xdebug: update to latest version

This commit is contained in:
Jason "Don" O'Conal 2013-06-30 02:51:20 +02:00
parent f01588653c
commit 1ebaebbd93

@ -1,11 +1,12 @@
{ stdenv, fetchurl, php, autoconf, automake }:
stdenv.mkDerivation {
name = "php-xdebug-2.0.5";
stdenv.mkDerivation rec {
version = "2.2.3";
name = "php-xdebug-${version}";
src = fetchurl {
url = "http://xdebug.org/files/xdebug-2.0.5.tgz";
sha256 = "1cmq7c36gj8n41mfq1wba5rij8j77yqhydpcsbcysk1zchg68f26";
url = "http://xdebug.org/files/xdebug-2.2.3.tgz";
sha256 = "076px4ax3qcqr3mmhi9jjkfhn7pcymrpda4hzy6kgn3flhnqfldk";
};
buildInputs = [ php autoconf automake ];