qt5.qtdeclarative: switch to python 3

This commit is contained in:
Jan Tojnar 2019-12-25 09:30:13 +01:00
parent c16bcf71ec
commit 7e8293edcb
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,11 +1,11 @@
{ qtModule, lib, python2, qtbase, qtsvg }:
{ qtModule, lib, python3, qtbase, qtsvg }:
with lib;
qtModule {
name = "qtdeclarative";
qtInputs = [ qtbase qtsvg ];
nativeBuildInputs = [ python2 ];
nativeBuildInputs = [ python3 ];
outputs = [ "out" "dev" "bin" ];
preConfigure = ''
NIX_CFLAGS_COMPILE+=" -DNIXPKGS_QML2_IMPORT_PREFIX=\"$qtQmlPrefix\""