about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
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";
+  };
+}