Skip to content

Commit

Permalink
eventstore: add updateScript
Browse files Browse the repository at this point in the history
  • Loading branch information
mdarocha committed Sep 21, 2022
1 parent 49c6362 commit 2cd8c29
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/servers/nosql/eventstore/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ buildDotnetModule rec {
kill "$PID";
'';

passthru.updateScript = ./updater.sh;

meta = with lib; {
homepage = "https://geteventstore.com/";
description = "Event sourcing database with processing logic in JavaScript";
Expand Down
23 changes: 23 additions & 0 deletions pkgs/servers/nosql/eventstore/updater.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#! /usr/bin/env nix-shell
#! nix-shell -I nixpkgs=./. -i bash -p curl jq common-updater-scripts
# shellcheck shell=bash

set -euo pipefail

cd "$(dirname "${BASH_SOURCE[0]}")"

deps_file="$(realpath "./deps.nix")"

new_version="$(curl -s "https://api.github.com/repos/EventStore/EventStore/releases/latest" | jq -r '.name')"
new_version="${new_version#oss-v}"
old_version="$(sed -nE 's/\s*version = "(.*)".*/\1/p' ./default.nix)"

if [[ "$new_version" == "$old_version" ]]; then
echo "Already up to date!"
exit 0
fi

cd ../../../..
update-source-version eventstore "${new_version//v}"

$(nix-build -A eventstore.fetch-deps --no-out-link) "$deps_file"

0 comments on commit 2cd8c29

Please sign in to comment.