Merge pull request #696 from lovek323/php-xdebug
php-xdebug: update to latest version
This commit is contained in:
commit
80faccca75
|
@ -1,11 +1,12 @@
|
||||||
{ stdenv, fetchurl, php, autoconf, automake }:
|
{ stdenv, fetchurl, php, autoconf, automake }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "php-xdebug-2.0.5";
|
version = "2.2.3";
|
||||||
|
name = "php-xdebug-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://xdebug.org/files/xdebug-2.0.5.tgz";
|
url = "http://xdebug.org/files/xdebug-2.2.3.tgz";
|
||||||
sha256 = "1cmq7c36gj8n41mfq1wba5rij8j77yqhydpcsbcysk1zchg68f26";
|
sha256 = "076px4ax3qcqr3mmhi9jjkfhn7pcymrpda4hzy6kgn3flhnqfldk";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ php autoconf automake ];
|
buildInputs = [ php autoconf automake ];
|
||||||
|
|
Loading…
Reference in New Issue