* Get rid of many instances of "args: with args;", and other coding
guidelines violations. * Updated libsamplerate to 0.1.7. svn path=/nixpkgs/trunk/; revision=22782
This commit is contained in:
@@ -1,13 +1,14 @@
|
||||
args: with args;
|
||||
stdenv.mkDerivation {
|
||||
name = "php-xdebug";
|
||||
{ stdenv, fetchurl, php, autoconf, automake }:
|
||||
|
||||
src = args.fetchurl {
|
||||
stdenv.mkDerivation {
|
||||
name = "php-xdebug-2.0.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://xdebug.org/files/xdebug-2.0.5.tgz";
|
||||
sha256 = "1cmq7c36gj8n41mfq1wba5rij8j77yqhydpcsbcysk1zchg68f26";
|
||||
};
|
||||
|
||||
buildInputs = [php autoconf automake];
|
||||
buildInputs = [ php autoconf automake ];
|
||||
|
||||
configurePhase = ''
|
||||
phpize
|
||||
@@ -25,10 +26,10 @@ stdenv.mkDerivation {
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "php debugger and profiler extension";
|
||||
description = "PHP debugger and profiler extension";
|
||||
homepage = http://xdebug.org/;
|
||||
license = "xdebug"; # based on PHP-3
|
||||
maintainers = [stdenv.lib.maintainers.marcweber];
|
||||
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user