Skip to content

Commit

Permalink
mesa: use python2
Browse files Browse the repository at this point in the history
since there is still code that is not compatible with Python 3.x and the
following issue occurs as well
https://bugs.freedesktop.org/show_bug.cgi?id=95338
  • Loading branch information
FRidh committed Oct 17, 2016
1 parent 87818e2 commit 1b67faa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/mesa/default.nix
Expand Up @@ -2,7 +2,7 @@
, pkgconfig, intltool, autoreconfHook, substituteAll
, file, expat, libdrm, xorg, wayland, systemd
, llvmPackages, libffi, libomxil-bellagio, libva
, libelf, libvdpau, python
, libelf, libvdpau, python2
, grsecEnabled ? false
, enableTextureFloats ? false # Texture floats are patented, see docs/patents.txt
}:
Expand Down Expand Up @@ -113,7 +113,7 @@ stdenv.mkDerivation {
libX11 libXext libxcb libXt libXfixes libxshmfence
libffi wayland libvdpau libelf libXvMC
libomxil-bellagio libva libpthreadstubs
(python.withPackages (ps: [ ps.Mako ]))
(python2.withPackages (ps: [ ps.Mako ]))
] ++ optional stdenv.isLinux systemd;


Expand Down

0 comments on commit 1b67faa

Please sign in to comment.