From 0ef84d81e2e186b2d77db9314381f3a89ce8f86a Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 20 Dec 2020 14:49:11 +0100 Subject: 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 --- pkgs/games/gog/default.nix | 1 + pkgs/games/gog/graveyard-keeper.nix | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 pkgs/games/gog/graveyard-keeper.nix 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"; + }; +} -- cgit 1.4.1