about summary refs log tree commit diff
path: root/pkgs/games/humblebundle
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2018-04-25 13:18:12 +0200
committeraszlig <aszlig@nix.build>2018-04-25 13:18:24 +0200
commite09655d034ac1cc81a7f741a036320010e669772 (patch)
tree861e67594b6ac4978203febac88421f0630c8c78 /pkgs/games/humblebundle
parentdcaed147cdc9cfc4f8c9e9535e25ab492df85195 (diff)
games/starbound: Add libGLU as dependency
Starbound not only needs libGL but also libGLU, so let's actually
include that dependency in its combined form (libGLU_combined).

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'pkgs/games/humblebundle')
-rw-r--r--pkgs/games/humblebundle/starbound.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/games/humblebundle/starbound.nix b/pkgs/games/humblebundle/starbound.nix
index baad485d..d3c11935 100644
--- a/pkgs/games/humblebundle/starbound.nix
+++ b/pkgs/games/humblebundle/starbound.nix
@@ -1,11 +1,11 @@
-{ stdenv, fetchHumbleBundle, unzip, fetchurl, writeText, SDL2, libGL, xorg
-, makeDesktopItem
+{ stdenv, fetchHumbleBundle, unzip, fetchurl, writeText, SDL2, libGLU_combined
+, xorg, makeDesktopItem
 }:
 
 let
   binaryDeps = {
     starbound.deps = [
-      SDL2 libGL xorg.libX11 xorg.libICE xorg.libSM xorg.libXext
+      SDL2 libGLU_combined xorg.libX11 xorg.libICE xorg.libSM xorg.libXext
     ];
     starbound.needsBootconfig = true;