mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
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:
commit
6eab450ebd
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue