summaryrefslogtreecommitdiffstats
path: root/pkgs/servers/h2
diff options
context:
space:
mode:
author2chilled <matthias.mh.herrmann@googlemail.com>2017-01-15 14:01:07 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2017-01-15 14:01:07 +0100
commit936e2086e617f8046f712b7812a65cc50e501090 (patch)
tree674d08cbf233f0d7b00d5a4592fc5005d69705a0 /pkgs/servers/h2
parente35212ac647256f0e7963bf2c663fe07bdd966d6 (diff)
h2: init at 1.4.193 (#21893)
Diffstat (limited to 'pkgs/servers/h2')
-rw-r--r--pkgs/servers/h2/default.nix44
1 files changed, 44 insertions, 0 deletions
diff --git a/pkgs/servers/h2/default.nix b/pkgs/servers/h2/default.nix
new file mode 100644
index 000000000000..a5dbf74947e2
--- /dev/null
+++ b/pkgs/servers/h2/default.nix
@@ -0,0 +1,44 @@
+{ stdenv, fetchzip, jre, makeWrapper, unzip }:
+stdenv.mkDerivation rec {
+ name = "h2-${version}";
+
+ version = "1.4.193";
+
+ src = fetchzip {
+ url = "http://www.h2database.com/h2-2016-10-31.zip";
+ sha256 = "1da1qcfwi5gvh68i6w6y0qpcqp3rbgakizagkajmjxk2ryc4b3z9";
+ };
+
+ buildInputs = [ makeWrapper ];
+
+ installPhase =
+ let
+ h2ToolScript = ''
+ #!/usr/bin/env bash
+ dir=$(dirname "$0")
+
+ if [ -n "$1" ]; then
+ ${jre}/bin/java -cp "$dir/h2-${version}.jar:$H2DRIVERS:$CLASSPATH" $1 "''${@:2}"
+ else
+ echo "You have to provide the full java class path for the h2 tool you want to run. E.g. 'org.h2.tools.Server'"
+ fi
+ '';
+ in ''
+ mkdir -p $out
+ cp -R * $out
+
+ echo '${h2ToolScript}' > $out/bin/h2tool.sh
+
+ substituteInPlace $out/bin/h2.sh --replace "java" "${jre}/bin/java"
+
+ chmod +x $out/bin/*.sh
+ '';
+
+ meta = with stdenv.lib; {
+ description = "The Java SQL database";
+ homepage = http://www.h2database.com/html/main.html;
+ license = licenses.mpl20;
+ platforms = stdenv.lib.platforms.linux;
+ maintainers = with maintainers; [ mahe ];
+ };
+}