about summary refs log tree commit diff
path: root/pkgs/games/gog
diff options
context:
space:
mode:
authorGuillaume Maudoux <guillaume.maudoux@uclouvain.be>2018-07-15 22:56:30 +0200
committerGuillaume Maudoux <layus.on@gmail.com>2018-10-03 23:33:33 +0200
commitc55fec1e0eef3b30ef5035c9655fa4f1f0b7d0aa (patch)
treee70b559821ff0528e94f105be4cde56abafc6229 /pkgs/games/gog
parentef956a0ed5fc0d3bc2231278f4a68140e34ab9d7 (diff)
epistory: init
Diffstat (limited to 'pkgs/games/gog')
-rw-r--r--pkgs/games/gog/default.nix1
-rw-r--r--pkgs/games/gog/epistory.nix35
2 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/games/gog/default.nix b/pkgs/games/gog/default.nix
index e750ce7b..edd81bc4 100644
--- a/pkgs/games/gog/default.nix
+++ b/pkgs/games/gog/default.nix
@@ -13,6 +13,7 @@ let
 
     albion = callPackage_i686 ./albion {};
     dungeons3 = callPackage ./dungeons3.nix {};
+    epistory = callPackage ./epistory.nix { };
     overload = callPackage ./overload.nix {};
     party-hard = callPackage ./party-hard.nix {};
     satellite-reign = callPackage ./satellite-reign.nix {};
diff --git a/pkgs/games/gog/epistory.nix b/pkgs/games/gog/epistory.nix
new file mode 100644
index 00000000..8e9815c9
--- /dev/null
+++ b/pkgs/games/gog/epistory.nix
@@ -0,0 +1,35 @@
+{ buildUnity, fetchGog, fixFmodHook }:
+
+buildUnity rec {
+  name = "epistory";
+  fullName = "Epistory";
+  saveDir = "Fishing Cactus/Epistory";
+  version = "1.4-gog0";
+
+  src = fetchGog {
+    productId = 1986504189;
+    downloadName = "en3installer0";
+    sha256 = "05v9i4d7h2id5w6mfpnz3ig62v5dqibl74vahx3gqw9ya4jpgwv8";
+  };
+
+  buildInputs = [ fixFmodHook ];
+
+  meta = {
+    homepage = [
+      https://www.gog.com/game/epistory_typing_chronicles
+      http://epistorygame.com
+    ];
+    downloadPage = https://embed.gog.com/account/gameDetails/1986504189.json;
+    description = "a beautiful atmospheric 3D action/adventure typing game";
+    longDescription = ''
+      Epistory - Typing Chronicles is a beautiful atmospheric 3D
+      action/adventure typing game that tells the story of a writer lacking
+      inspiration who asks her muse to help write her latest book.
+
+      It features a visually stunning papercraft art style and blends light RPG
+      elements with exploration and unique combat mechanics solely using the
+      keyboard.
+    '';
+  };
+
+}