Merge branch 'staging' into closure-size
This commit is contained in:
@@ -71,8 +71,8 @@
|
||||
src = fetchFromGitHub {
|
||||
owner = "openresty";
|
||||
repo = "lua-nginx-module";
|
||||
rev = "v0.9.19";
|
||||
sha256 = "13h58rzdfhc5kc4xqwrd2p34rgnwim4hikq923cnfz1p2bvlddrf";
|
||||
rev = "v0.10.0";
|
||||
sha256 = "0isdqrnjhfy4zlydj4csf91i9184ykazyah3i63jfrmmarxr5li1";
|
||||
};
|
||||
inputs = [ pkgs.luajit ];
|
||||
preConfigure = ''
|
||||
|
||||
@@ -7,10 +7,10 @@
|
||||
with stdenv.lib;
|
||||
|
||||
let
|
||||
version = "1.9.7";
|
||||
version = "1.9.9";
|
||||
mainSrc = fetchurl {
|
||||
url = "http://nginx.org/download/nginx-${version}.tar.gz";
|
||||
sha256 = "1ma82wfg9akghx1cnzfmz4nplf0zjv1rk49x4v3f3z7xmwbx4jvr";
|
||||
sha256 = "0wwd0q00pnkw4gjn3izjr63sndp7piyc5k5mbjm369f824mvnrny";
|
||||
};
|
||||
|
||||
in
|
||||
|
||||
@@ -1,19 +1,18 @@
|
||||
{ stdenv, fetchurl, pkgconfig, libevent, file, qrencode }:
|
||||
{ stdenv, fetchurl, pkgconfig, libevent, file, qrencode, miniupnpc }:
|
||||
|
||||
let
|
||||
version = "0.2.6";
|
||||
version = "0.3";
|
||||
in stdenv.mkDerivation {
|
||||
name = "pshs-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.bitbucket.org/mgorny/pshs/downloads/pshs-${version}.tar.bz2";
|
||||
sha256 = "0n8l5sjnwjqjmw0jzg3hb93n6npg2wahmdg1zrpsw8fyh9ggjg4g";
|
||||
sha256 = "0qvy1m9jmbjhbihs1qr9nasbaajl3n0x8bgz1vw9xvpkqymx5i63";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig libevent file qrencode ];
|
||||
buildInputs = [ pkgconfig libevent file qrencode miniupnpc ];
|
||||
|
||||
# TODO: enable ssl once dependencies
|
||||
# (libssl libcrypto libevent >= 2.1 libevent_openssl) can be met
|
||||
# SSL requires libevent at 2.1 with ssl support
|
||||
configureFlags = "--disable-ssl";
|
||||
|
||||
meta = {
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
{stdenv, fetchurl, apacheAnt, jdk, unzip}:
|
||||
{ stdenv, fetchurl, apacheAnt, jdk, unzip }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "axis2-1.6.3";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "axis2-${version}";
|
||||
version = "1.6.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://apache.proserve.nl/axis/axis2/java/core/1.6.3/axis2-1.6.3-bin.zip;
|
||||
sha256 = "0a49m7g1gxb904d0az2kbkab8rg02wm8nzbyipiad9k028masr6r";
|
||||
url = "http://apache.proserve.nl/axis/axis2/java/core/${version}/${name}-bin.zip";
|
||||
sha256 = "12ir706dn95567j6lkxdwrh28vnp6292h59qwjyqjm7ckglkmgyr";
|
||||
};
|
||||
|
||||
buildInputs = [ unzip apacheAnt jdk ];
|
||||
|
||||
Reference in New Issue
Block a user