mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
82 lines
2.2 KiB
Nix
82 lines
2.2 KiB
Nix
{ lib
|
|
, git
|
|
, dotnetCorePackages
|
|
, glibcLocales
|
|
, buildDotnetModule
|
|
, fetchFromGitHub
|
|
, bintools
|
|
, stdenv
|
|
, mono
|
|
}:
|
|
|
|
buildDotnetModule rec {
|
|
pname = "EventStore";
|
|
version = "21.10.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "EventStore";
|
|
repo = "EventStore";
|
|
rev = "oss-v${version}";
|
|
sha256 = "sha256-uUDjTGCiQgXmvOUsujIA0JkGQGuw9U4zLKDP1WIFq1o=";
|
|
leaveDotGit = true;
|
|
};
|
|
|
|
# Fixes application reporting 0.0.0.0 as its version.
|
|
MINVERVERSIONOVERRIDE = version;
|
|
|
|
dotnet-sdk = dotnetCorePackages.sdk_5_0;
|
|
dotnet-runtime = dotnetCorePackages.aspnetcore_5_0;
|
|
|
|
nativeBuildInputs = [ git glibcLocales bintools ];
|
|
|
|
runtimeDeps = [ mono ];
|
|
|
|
nugetBinariesToPatch = lib.optionals stdenv.isLinux [
|
|
"grpc.tools/2.39.1/tools/linux_x64/protoc"
|
|
"grpc.tools/2.39.1/tools/linux_x64/grpc_csharp_plugin"
|
|
];
|
|
|
|
postConfigure = ''
|
|
# Fixes execution of native protoc binaries during build
|
|
for binary in $nugetBinariesToPatch; do
|
|
path="$HOME/.nuget/packages/$binary"
|
|
patchelf --set-interpreter "$(cat $NIX_BINTOOLS/nix-support/dynamic-linker)" $path
|
|
done
|
|
|
|
# Fixes git execution by GitInfo on mac os
|
|
substituteInPlace "$HOME/.nuget/packages/gitinfo/2.0.26/build/GitInfo.targets" \
|
|
--replace "<GitExe Condition=\"Exists('/usr/bin/git')\">/usr/bin/git</GitExe>" " " \
|
|
--replace "<GitExe Condition=\"Exists('/usr/local/bin/git')\">/usr/local/bin/git</GitExe>" ""
|
|
'';
|
|
|
|
nugetDeps = ./deps.nix;
|
|
|
|
projectFile = "src/EventStore.ClusterNode/EventStore.ClusterNode.csproj";
|
|
|
|
doCheck = true;
|
|
testProjectFile = "src/EventStore.Projections.Core.Tests/EventStore.Projections.Core.Tests.csproj";
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
$out/bin/EventStore.ClusterNode --insecure \
|
|
--db "$HOME/data" \
|
|
--index "$HOME/index" \
|
|
--log "$HOME/log" \
|
|
-runprojections all --startstandardprojections \
|
|
--EnableAtomPubOverHttp &
|
|
|
|
PID=$!
|
|
|
|
sleep 30s;
|
|
kill "$PID";
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://geteventstore.com/";
|
|
description = "Event sourcing database with processing logic in JavaScript";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ puffnfresh mdarocha ];
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
|
};
|
|
}
|