summaryrefslogtreecommitdiffstats
path: root/pkgs/games/gcs/default.nix
diff options
context:
space:
mode:
authorpngwjpgh <pngwjpgh@users.noreply.github.com>2017-02-04 15:36:38 +0100
committerJoachim F <joachifm@users.noreply.github.com>2017-02-04 15:36:38 +0100
commit913c5b21d5754c78cdf1a376da876ee3bff1de8b (patch)
treee7ceac618bbef29fac926468c6cd92c857a4889a /pkgs/games/gcs/default.nix
parent43453eb94baa230266762ac55a0f23e07d954ed9 (diff)
gcs: init at 4.8.0 (#22173)
Diffstat (limited to 'pkgs/games/gcs/default.nix')
-rw-r--r--pkgs/games/gcs/default.nix77
1 files changed, 77 insertions, 0 deletions
diff --git a/pkgs/games/gcs/default.nix b/pkgs/games/gcs/default.nix
new file mode 100644
index 000000000000..1d96d056a822
--- /dev/null
+++ b/pkgs/games/gcs/default.nix
@@ -0,0 +1,77 @@
+{ stdenv, fetchFromGitHub, runCommand
+, jdk8, ant
+, jre8, makeWrapper
+, findutils
+}:
+
+let
+ gcs = fetchFromGitHub {
+ owner = "richardwilkes";
+ repo = "gcs";
+ rev = "gcs-4.8.0";
+ sha256 = "0k8am8vfwls5s2z4zj1p1aqy8gapn5vbr9zy66s5g048ch8ah1hm";
+ };
+ appleStubs = fetchFromGitHub {
+ owner = "richardwilkes";
+ repo = "apple_stubs";
+ rev = "gcs-4.3.0";
+ sha256 = "0m1qw30b19s04hj7nch1mbvv5s698g5dr1d1r7r07ykvk1yh7zsa";
+ };
+ toolkit = fetchFromGitHub {
+ owner = "richardwilkes";
+ repo = "toolkit";
+ rev = "gcs-4.8.0";
+ sha256 = "1ciwwh0wxk3pzsj6rbggsbg3l2f741qy7yx1ca4v7vflsma84f1n";
+ };
+ library = fetchFromGitHub {
+ owner = "richardwilkes";
+ repo = "gcs_library";
+ rev = "gcs-4.8.0";
+ sha256 = "085jpp9mpv5kw00zds9sywmfq31mrlbrgahnwcjkx0z9i22amz4g";
+ };
+in stdenv.mkDerivation rec {
+ name = "gcs-${version}";
+ version = "4.8.0";
+
+ src = runCommand "${name}-src" { preferLocalBuild = true; } ''
+ mkdir -p $out
+ cd $out
+
+ cp -r ${gcs} gcs
+ cp -r ${appleStubs} apple_stubs
+ cp -r ${toolkit} toolkit
+ cp -r ${library} gcs_library
+ '';
+
+ buildInputs = [ jdk8 jre8 ant makeWrapper ];
+ buildPhase = ''
+ cd apple_stubs
+ ant
+
+ cd ../toolkit
+ ant
+
+ cd ../gcs
+ ant
+
+ cd ..
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin $out/share/java
+
+ find gcs/libraries toolkit/libraries apple_stubs/ \( -name '*.jar' -and -not -name '*-src.jar' \) -exec cp '{}' $out/share/java ';'
+
+ makeWrapper ${jre8}/bin/java $out/bin/gcs \
+ --set GCS_LIBRARY ${library} \
+ --add-flags "-cp $out/share/java/gcs-${version}.jar com.trollworks.gcs.app.GCS"
+ '';
+
+ meta = with stdenv.lib; {
+ description = "A stand-alone, interactive, character sheet editor for the GURPS 4th Edition roleplaying game system";
+ homepage = "http://gurpscharactersheet.com/";
+ license = licenses.mpl20;
+ platforms = platforms.all;
+ maintainers = with maintainers; [];
+ };
+}