Merge pull request #984 from orbitz/pin-riak-r15b03

Pin 1.3.1 to R15B03, riak does not work with R16
This commit is contained in:
cillianderoiste 2013-09-17 11:50:56 -07:00
commit 6eab450ebd

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, unzip, erlang }: { stdenv, fetchurl, unzip, erlangR15B03 }:
let let
srcs = { srcs = {
@ -15,7 +15,7 @@ in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "riak-1.3.1"; name = "riak-1.3.1";
buildInputs = [unzip erlang]; buildInputs = [unzip erlangR15B03];
src = srcs.riak; src = srcs.riak;