Merge pull request #44405 from dotlambda/emptyepsilon-python3

EmptyEpsilon: use python3
This commit is contained in:
Silvan Mosberger 2018-08-03 18:12:01 +02:00 committed by GitHub
commit 30783a52bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, cmake, sfml, libX11, glew, python }:
{ lib, stdenv, fetchFromGitHub, cmake, sfml, libX11, glew, python3 }:
let
@ -42,7 +42,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ cmake ];
buildInputs = [ serious-proton sfml glew libX11 python ];
buildInputs = [ serious-proton sfml glew libX11 python3 ];
cmakeFlags = [
"-DSERIOUS_PROTON_DIR=${serious-proton.src}"