Merge branch 'staging' into v/modular

Conflicts (easy):
	pkgs/development/interpreters/perl/5.10/setup-hook.sh
	pkgs/development/interpreters/perl/5.8/setup-hook.sh
	pkgs/development/libraries/gtk+/2.x.nix
This commit is contained in:
Vladimír Čunát
2014-08-31 12:23:18 +02:00
767 changed files with 19114 additions and 13711 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
'';
meta = {
description = "Apache CouchDB is a database that uses JSON for documents, JavaScript for MapReduce queries, and regular HTTP for an API";
description = "A database that uses JSON for documents, JavaScript for MapReduce queries, and regular HTTP for an API";
homepage = "http://couchdb.apache.org";
license = stdenv.lib.licenses.asl20;
maintainers = with stdenv.lib.maintainers; [ viric garbas ];
+1 -1
View File
@@ -18,7 +18,7 @@ stdenv.mkDerivation {
meta = {
homepage = "http://www.jboss.org/";
description = "JBoss, Open Source J2EE application server";
description = "Open Source J2EE application server";
license = "GPL/LGPL";
maintainers = [ lib.maintainers.sander ];
};
+4 -1
View File
@@ -1,6 +1,8 @@
{ stdenv, fetchurl, fetchgit, openssl, zlib, pcre, libxml2, libxslt, gd, geoip
, perl }:
assert stdenv.isLinux;
with stdenv.lib;
stdenv.mkDerivation rec {
@@ -46,13 +48,14 @@ stdenv.mkDerivation rec {
preConfigure = ''
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${libxml2}/include/libxml2 $additionalFlags"
export PATH="$PATH:${stdenv.gcc.libc}/sbin"
patchShebangs .
'';
meta = {
description = "A fast web application server built on Nginx";
homepage = http://openresty.org;
license = licenses.bsd2;
platforms = platforms.all;
platforms = platforms.linux;
maintainers = with maintainers; [ thoughtpolice ];
};
}