about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2020-11-10 08:08:16 +0100
committeraszlig <aszlig@nix.build>2020-11-10 08:43:42 +0100
commit66ae8ae823993c4e71e882822d924342cea43a60 (patch)
tree621d7b9a2bfe2364d4162382977f0a6d2e5c43fe /pkgs/games
parentd66e3603ac09081dc5e2627dfb0d72683c365a68 (diff)
games/gog: Add "The Longing"
Another game that I already finished (in less than 400 days obviously)
but haven't yet committed so far.

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/gog/default.nix1
-rw-r--r--pkgs/games/gog/the-longing.nix13
2 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/games/gog/default.nix b/pkgs/games/gog/default.nix
index a27f310d..2fd882ff 100644
--- a/pkgs/games/gog/default.nix
+++ b/pkgs/games/gog/default.nix
@@ -34,6 +34,7 @@ let
     stardew-valley = callPackage ./stardew-valley.nix {};
     sunless-skies = callPackage ./sunless-skies.nix {};
     the-longest-journey = callPackage ./the-longest-journey {};
+    the-longing = callPackage ./the-longing.nix {};
     thimbleweed-park = callPackage ./thimbleweed-park.nix {};
     war-for-the-overworld = callPackage ./war-for-the-overworld.nix {};
     warcraft2 = callPackage ./warcraft2 {};
diff --git a/pkgs/games/gog/the-longing.nix b/pkgs/games/gog/the-longing.nix
new file mode 100644
index 00000000..cf12ecab
--- /dev/null
+++ b/pkgs/games/gog/the-longing.nix
@@ -0,0 +1,13 @@
+{ buildUnity, fetchGog, lib }:
+
+buildUnity {
+  name = "the-longing";
+  fullName = "The Longing";
+  saveDir = "Studio Seufz/The Longing";
+  version = "1.0.7";
+
+  src = fetchGog {
+    productId = 1091099749;
+    sha256 = "18gzzgl7dkgbv2a6ibj3bxc409asnad6b2yaxg8mp8ya7wyw8wv0";
+  };
+}