about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/games/gog/default.nix1
-rw-r--r--pkgs/games/gog/epistory.nix35
-rw-r--r--pkgs/games/gog/stardew-valley.nix4
3 files changed, 38 insertions, 2 deletions
diff --git a/pkgs/games/gog/default.nix b/pkgs/games/gog/default.nix
index 964fd054..1ef58c30 100644
--- a/pkgs/games/gog/default.nix
+++ b/pkgs/games/gog/default.nix
@@ -14,6 +14,7 @@ let
     albion = callPackage_i686 ./albion {};
     crosscode = callPackage ./crosscode.nix {};
     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.
+    '';
+  };
+
+}
diff --git a/pkgs/games/gog/stardew-valley.nix b/pkgs/games/gog/stardew-valley.nix
index 8afd88cd..820e98de 100644
--- a/pkgs/games/gog/stardew-valley.nix
+++ b/pkgs/games/gog/stardew-valley.nix
@@ -4,12 +4,12 @@
 
 buildGame rec {
   name = "stardew-valley-${version}";
-  version = "1.3.28";
+  version = "1.3.32";
 
   src = fetchGog {
     productId = 1453375253;
     downloadName = "en3installer0";
-    sha256 = "0lazp9zbgvg33wc5cvmf3fwvsdx3xkslr8nqdh3sm2grhchqqpfn";
+    sha256 = "1j6zzdjif2xbihcmpf66af4mbnxnvzjnfn0sq597i9a26h3caia2";
   };
 
   nativeBuildInputs = [ makeWrapper ];