summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2019-09-25 05:05:12 +0800
committerGitHub <noreply@github.com>2019-09-25 05:05:12 +0800
commit76e1ac4ee5755c5881271ef19396ad1da4d883fe (patch)
tree4d1bb8fe63622176505eaea048061c5158d0a7ea /pkgs/games
parent55bed3d06299e0b4319a735b9f22f341321b1e6f (diff)
parentfe8b82f557a265c1069f8a48233e3aaf7c0df1dc (diff)
downloadnixpkgs-76e1ac4ee5755c5881271ef19396ad1da4d883fe.tar
nixpkgs-76e1ac4ee5755c5881271ef19396ad1da4d883fe.tar.gz
nixpkgs-76e1ac4ee5755c5881271ef19396ad1da4d883fe.tar.bz2
nixpkgs-76e1ac4ee5755c5881271ef19396ad1da4d883fe.tar.lz
nixpkgs-76e1ac4ee5755c5881271ef19396ad1da4d883fe.tar.xz
nixpkgs-76e1ac4ee5755c5881271ef19396ad1da4d883fe.tar.zst
nixpkgs-76e1ac4ee5755c5881271ef19396ad1da4d883fe.zip
Merge pull request #69380 from peterhoeg/f/dxx_build
dxx-rebirth: build with gcc6 as gcc8 is not supported
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/dxx-rebirth/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/games/dxx-rebirth/default.nix b/pkgs/games/dxx-rebirth/default.nix
index 518b63ed483..82806c7521c 100644
--- a/pkgs/games/dxx-rebirth/default.nix
+++ b/pkgs/games/dxx-rebirth/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, fetchpatch, scons, pkgconfig
+{ gcc6Stdenv, fetchurl, fetchpatch, scons, pkgconfig
 , SDL, SDL_mixer, libGLU_combined, physfs
 }:
 
@@ -8,7 +8,7 @@ let
     sha256 = "05mz77vml396mff43dbs50524rlm4fyds6widypagfbh5hc55qdc";
   };
 
-in stdenv.mkDerivation rec {
+in gcc6Stdenv.mkDerivation rec {
   pname = "dxx-rebirth";
   version = "0.59.100";
 
@@ -44,9 +44,9 @@ in stdenv.mkDerivation rec {
     install -Dm644 -t $out/share/doc/dxx-rebirth *.txt
   '';
 
-  meta = with stdenv.lib; {
+  meta = with gcc6Stdenv.lib; {
     description = "Source Port of the Descent 1 and 2 engines";
-    homepage = https://www.dxx-rebirth.com/;
+    homepage = "https://www.dxx-rebirth.com/";
     license = licenses.free;
     maintainers = with maintainers; [ peterhoeg ];
     platforms = with platforms; linux;