mesa: reduce usage of the attribute and explain why

This commit is contained in:
Vladimír Čunát
2017-04-16 13:03:15 +02:00
parent d4d00f8c59
commit 2065eea424
4 changed files with 10 additions and 8 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, gcc, scons, pkgconfig, libX11, libXcursor
, libXinerama, libXrandr, libXrender, freetype, openssl, alsaLib
, libpulseaudio, mesa, mesa_glu, zlib }:
, libpulseaudio, mesa_glu, zlib }:
stdenv.mkDerivation rec {
name = "godot-${version}";
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
buildInputs = [
gcc scons pkgconfig libX11 libXcursor libXinerama libXrandr libXrender
freetype openssl alsaLib libpulseaudio mesa mesa_glu zlib
freetype openssl alsaLib libpulseaudio mesa_glu zlib
];
patches = [ ./pkg_config_additions.patch ];