lol
at 18.03-beta 25 lines 550 B view raw
1{ qtModule, lib, python2, qtbase, qtsvg, qtxmlpatterns }: 2 3with lib; 4 5qtModule { 6 name = "qtdeclarative"; 7 qtInputs = [ qtbase qtsvg qtxmlpatterns ]; 8 nativeBuildInputs = [ python2 ]; 9 outputs = [ "out" "dev" "bin" ]; 10 preConfigure = '' 11 NIX_CFLAGS_COMPILE+=" -DNIXPKGS_QML2_IMPORT_PREFIX=\"$qtQmlPrefix\"" 12 ''; 13 devTools = [ 14 "bin/qml" 15 "bin/qmlcachegen" 16 "bin/qmleasing" 17 "bin/qmlimportscanner" 18 "bin/qmllint" 19 "bin/qmlmin" 20 "bin/qmlplugindump" 21 "bin/qmlprofiler" 22 "bin/qmlscene" 23 "bin/qmltestrunner" 24 ]; 25}