From dd25608bfa723ba979504234dd689e502c52fcd3 Mon Sep 17 00:00:00 2001 From: aszlig Date: Wed, 1 Jul 2020 06:07:09 +0200 Subject: games/gog: Add Baldur's Gate I and II Both are the enhanced edition from GOG. Packaging is mostly straightforward, although I had to use patchelf with a custom patch, since while --remove-needed removes the DT_NEEDED entries from the ELF it doesn't however remove the corresponding entries in the .gnu.version_r section. The reason why I did this is because we really should not need Expat and OpenSSL, because they're only used by the XMPP portions of the statically linked libjingle. Signed-off-by: aszlig --- pkgs/games/gog/default.nix | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkgs/games/gog/default.nix') diff --git a/pkgs/games/gog/default.nix b/pkgs/games/gog/default.nix index 91c06b2d..a651c86d 100644 --- a/pkgs/games/gog/default.nix +++ b/pkgs/games/gog/default.nix @@ -12,6 +12,8 @@ let }; albion = callPackage_i686 ./albion {}; + baldurs-gate = (callPackage ./baldurs-gate {}).bg1ee; + baldurs-gate-2 = (callPackage ./baldurs-gate {}).bg2ee; crosscode = callPackage ./crosscode.nix {}; dungeons3 = callPackage ./dungeons3.nix {}; epistory = callPackage ./epistory.nix { }; -- cgit 1.4.1