mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
eventstore: 3.5.0 -> 4.0.3
... and use recent V8 version.
This commit is contained in:
parent
e9609f25b3
commit
7dd87bd0c4
@ -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
|
||||
# have a helper to make it easy to package these Mono apps.
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "EventStore-${version}";
|
||||
version = "3.5.0";
|
||||
version = "4.0.3";
|
||||
src = fetchFromGitHub {
|
||||
owner = "EventStore";
|
||||
repo = "EventStore";
|
||||
rev = "oss-v${version}";
|
||||
sha256 = "0dp5914hxwdzw62q49wavqfqkw3jy0dvml09y7gh8frnbiajcxq9";
|
||||
sha256 = "1905bnqyyiqprva67cp49rgib324iipw2l71jzj0ynzi7kxr4mgg";
|
||||
};
|
||||
|
||||
buildPhase = ''
|
||||
@ -33,6 +33,7 @@ stdenv.mkDerivation rec {
|
||||
chmod +x $out/bin/clusternode
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ git ];
|
||||
buildInputs = [ v8 mono ];
|
||||
|
||||
phases = [ "unpackPhase" "buildPhase" "installPhase" ];
|
||||
|
@ -11339,7 +11339,8 @@ with pkgs;
|
||||
elasticmq = callPackage ../servers/elasticmq { };
|
||||
|
||||
eventstore = callPackage ../servers/nosql/eventstore {
|
||||
v8 = v8_3_24_10;
|
||||
mono = mono46;
|
||||
v8 = v8_6_x;
|
||||
};
|
||||
|
||||
etcdctl = etcd;
|
||||
|
Loading…
Reference in New Issue
Block a user