summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJames Kay <james@hadean.com>2018-03-19 14:51:36 +0000
committerJames Kay <james@hadean.com>2018-03-19 14:51:36 +0000
commit9508150198c2d02b4b674eecd06834fd049639e0 (patch)
tree8ca923fa9f2b3d2c77266c0b9ccfb3b1433362b0 /pkgs
parent368ed89aa08e1e27c8bd210c160ec301c38832d1 (diff)
downloadnixpkgs-9508150198c2d02b4b674eecd06834fd049639e0.tar
nixpkgs-9508150198c2d02b4b674eecd06834fd049639e0.tar.gz
nixpkgs-9508150198c2d02b4b674eecd06834fd049639e0.tar.bz2
nixpkgs-9508150198c2d02b4b674eecd06834fd049639e0.tar.lz
nixpkgs-9508150198c2d02b4b674eecd06834fd049639e0.tar.xz
nixpkgs-9508150198c2d02b4b674eecd06834fd049639e0.tar.zst
nixpkgs-9508150198c2d02b4b674eecd06834fd049639e0.zip
godot: don't require gcc5
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/godot/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/godot/default.nix b/pkgs/development/tools/godot/default.nix
index 3c4914cd7cd..e89b2f62b15 100644
--- a/pkgs/development/tools/godot/default.nix
+++ b/pkgs/development/tools/godot/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchFromGitHub, gcc5, scons, pkgconfig, libX11, libXcursor
+{ stdenv, lib, fetchFromGitHub, scons, pkgconfig, libX11, libXcursor
 , libXinerama, libXrandr, libXrender, libpulseaudio ? null
 , libXi ? null, libXext, libXfixes, freetype, openssl
 , alsaLib, libGLU, zlib, yasm ? null }:
@@ -21,7 +21,7 @@ in stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ pkgconfig ];
   buildInputs = [
-    gcc5 scons libX11 libXcursor libXinerama libXrandr libXrender
+    scons libX11 libXcursor libXinerama libXrandr libXrender
     libXi libXext libXfixes freetype openssl alsaLib libpulseaudio
     libGLU zlib yasm
   ];