teeworlds: python2 -> python3

This commit is contained in:
Georg Haas 2020-03-24 13:36:29 +01:00
parent d8c1baab73
commit b6d07eb8ad
No known key found for this signature in database
GPG Key ID: B2D065AD4D6E0C81

View File

@ -1,4 +1,4 @@
{ fetchFromGitHub, stdenv, cmake, pkgconfig, python, alsaLib { fetchFromGitHub, stdenv, cmake, pkgconfig, python3, alsaLib
, libX11, libGLU, SDL2, lua5_3, zlib, freetype, wavpack , libX11, libGLU, SDL2, lua5_3, zlib, freetype, wavpack
}: }:
@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake pkgconfig ]; nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ buildInputs = [
python alsaLib libX11 libGLU SDL2 lua5_3 zlib freetype wavpack python3 alsaLib libX11 libGLU SDL2 lua5_3 zlib freetype wavpack
]; ];
meta = { meta = {