Merge pull request #76488 from jtojnar/more-python-cleanups

Another batch of Python 2 clean-ups
This commit is contained in:
Frederik Rietdijk
2020-01-06 12:00:36 +01:00
committed by GitHub
17 changed files with 57 additions and 39 deletions
@@ -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\""