summary refs log tree commit diff
path: root/pkgs/games/dhewm3
diff options
context:
space:
mode:
authorCarles Pagès <page@cubata.homelinux.net>2013-04-02 22:52:50 +0200
committerCarles Pagès <page@cubata.homelinux.net>2013-04-02 22:52:50 +0200
commit1717b494bf3bd69ae187e7758992e0ed99906c1f (patch)
treeddc36f68cdff6cc91c8e3d3cad4ddb2e82268b7e /pkgs/games/dhewm3
parent8f2662d4800fb55d175075cc5610b0baaae719d2 (diff)
downloadnixpkgs-1717b494bf3bd69ae187e7758992e0ed99906c1f.tar
nixpkgs-1717b494bf3bd69ae187e7758992e0ed99906c1f.tar.gz
nixpkgs-1717b494bf3bd69ae187e7758992e0ed99906c1f.tar.bz2
nixpkgs-1717b494bf3bd69ae187e7758992e0ed99906c1f.tar.lz
nixpkgs-1717b494bf3bd69ae187e7758992e0ed99906c1f.tar.xz
nixpkgs-1717b494bf3bd69ae187e7758992e0ed99906c1f.tar.zst
nixpkgs-1717b494bf3bd69ae187e7758992e0ed99906c1f.zip
dhewm3: add mesa to build inputs
I also removed an unused line I left over in previous commits.
Diffstat (limited to 'pkgs/games/dhewm3')
-rw-r--r--pkgs/games/dhewm3/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/games/dhewm3/default.nix b/pkgs/games/dhewm3/default.nix
index 67e840d8862..38b9f35e488 100644
--- a/pkgs/games/dhewm3/default.nix
+++ b/pkgs/games/dhewm3/default.nix
@@ -1,5 +1,5 @@
-{stdenv, fetchurl, unzip, cmake, SDL, zlib, libjpeg, libogg, libvorbis
-, openalSoft , curl }:
+{stdenv, fetchurl, unzip, cmake, SDL, mesa, zlib, libjpeg, libogg, libvorbis
+, openalSoft, curl }:
 
 stdenv.mkDerivation rec {
   hash = "92a41322f4aa8bd45395d8088721c9a2bf43c79b";
@@ -7,7 +7,6 @@ stdenv.mkDerivation rec {
   src = fetchurl {
     url = "https://github.com/dhewm/dhewm3/zipball/${hash}";
     sha256 = "0c17k60xhimpqi1xi9s1l7jbc97pqjnk4lgwyjb0agc3dkr73zwd";
-    #name  = "dhewm-dhewm3-92a4132.zip";
   };
 
   unpackPhase = ''
@@ -15,7 +14,7 @@ stdenv.mkDerivation rec {
     cd */neo
   '';
 
-  buildInputs = [ unzip cmake SDL zlib libjpeg libogg libvorbis openalSoft
+  buildInputs = [ unzip cmake SDL mesa zlib libjpeg libogg libvorbis openalSoft
     curl ];
 
   meta = {