eventstore: 3.5.0 -> 4.0.3

... and use recent V8 version.
This commit is contained in:
Stefan Siegl 2017-10-09 23:32:12 +02:00
parent e9609f25b3
commit 7dd87bd0c4
No known key found for this signature in database
GPG Key ID: B224EC6857AD7F9B
2 changed files with 6 additions and 4 deletions

View File

@ -1,16 +1,16 @@
{ stdenv, fetchFromGitHub, fetchpatch, mono, v8 }: { stdenv, fetchFromGitHub, fetchpatch, git, mono, v8 }:
# There are some similarities with the pinta derivation. We should # There are some similarities with the pinta derivation. We should
# have a helper to make it easy to package these Mono apps. # have a helper to make it easy to package these Mono apps.
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "EventStore-${version}"; name = "EventStore-${version}";
version = "3.5.0"; version = "4.0.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "EventStore"; owner = "EventStore";
repo = "EventStore"; repo = "EventStore";
rev = "oss-v${version}"; rev = "oss-v${version}";
sha256 = "0dp5914hxwdzw62q49wavqfqkw3jy0dvml09y7gh8frnbiajcxq9"; sha256 = "1905bnqyyiqprva67cp49rgib324iipw2l71jzj0ynzi7kxr4mgg";
}; };
buildPhase = '' buildPhase = ''
@ -33,6 +33,7 @@ stdenv.mkDerivation rec {
chmod +x $out/bin/clusternode chmod +x $out/bin/clusternode
''; '';
nativeBuildInputs = [ git ];
buildInputs = [ v8 mono ]; buildInputs = [ v8 mono ];
phases = [ "unpackPhase" "buildPhase" "installPhase" ]; phases = [ "unpackPhase" "buildPhase" "installPhase" ];

View File

@ -11339,7 +11339,8 @@ with pkgs;
elasticmq = callPackage ../servers/elasticmq { }; elasticmq = callPackage ../servers/elasticmq { };
eventstore = callPackage ../servers/nosql/eventstore { eventstore = callPackage ../servers/nosql/eventstore {
v8 = v8_3_24_10; mono = mono46;
v8 = v8_6_x;
}; };
etcdctl = etcd; etcdctl = etcd;