ja2-stracciatella: change to python3

This commit is contained in:
Frederik Rietdijk 2021-07-27 16:13:30 +02:00
parent f887fbcaef
commit edd356d0a6
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, lib, fetchurl, fetchFromGitHub, cmake, python, rustPlatform, SDL2, fltk, rapidjson, gtest, Carbon, Cocoa }:
{ stdenv, lib, fetchurl, fetchFromGitHub, cmake, python3, rustPlatform, SDL2, fltk, rapidjson, gtest, Carbon, Cocoa }:
let
version = "0.17.0";
src = fetchFromGitHub {
@ -28,7 +28,7 @@ stdenv.mkDerivation {
pname = "ja2-stracciatella";
inherit src version;
nativeBuildInputs = [ cmake python ];
nativeBuildInputs = [ cmake python3 ];
buildInputs = [ SDL2 fltk rapidjson gtest ] ++ lib.optionals stdenv.isDarwin [ Carbon Cocoa ];
patches = [