about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2020-12-20 14:49:11 +0100
committeraszlig <aszlig@nix.build>2020-12-20 14:52:51 +0100
commit0ef84d81e2e186b2d77db9314381f3a89ce8f86a (patch)
tree0488ef92edf7f456dfc4460a01ee565494149fd6 /pkgs/games
parentf3c0357b35755ba98f196fd5d0d5085e00034185 (diff)
games/gog: Add Graveyard Keeper
This has been mentioned on Discourse[1] and since I have that game in my
GOG library, I just decided to package it.

I only went to the main menu and didn't actually play it, since I'm
somewhat time constrained at the moment. So this only is "for the sake
of completeness" :-)

[1]: https://discourse.nixos.org/t/nix-expression-for-downloaded-gog-game/10595/7

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/graveyard-keeper.nix13
2 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/games/gog/default.nix b/pkgs/games/gog/default.nix
index 2fd882ff..b405016a 100644
--- a/pkgs/games/gog/default.nix
+++ b/pkgs/games/gog/default.nix
@@ -21,6 +21,7 @@ let
     epistory = callPackage ./epistory.nix { };
     freedom-planet = callPackage ./freedom-planet.nix {};
     gibbous = callPackage ./gibbous.nix {};
+    graveyard-keeper = callPackage ./graveyard-keeper.nix {};
     homm3 = callPackage ./homm3 {};
     hollow-knight = callPackage ./hollow-knight.nix {};
     into-the-breach = callPackage ./into-the-breach.nix {};
diff --git a/pkgs/games/gog/graveyard-keeper.nix b/pkgs/games/gog/graveyard-keeper.nix
new file mode 100644
index 00000000..d1e9eb54
--- /dev/null
+++ b/pkgs/games/gog/graveyard-keeper.nix
@@ -0,0 +1,13 @@
+{ buildUnity, fetchGog }:
+
+buildUnity {
+  name = "graveyard-keeper";
+  fullName = "Graveyard Keeper";
+  saveDir = "Lazy Bear Games/Graveyard Keeper";
+  version = "1.310";
+
+  src = fetchGog {
+    productId = 1780408621;
+    sha256 = "0a9a53dm46q66g9zz5w1937a4635vnihj8xpbi6lxhfnlpf0cxl3";
+  };
+}