qt6.qtdeclarative: nixfmt after 78e340633e27

+14 -9
+14 -9
pkgs/development/libraries/qt-6/modules/qtdeclarative/default.nix
··· 32 32 ./use-versioned-import-path.patch 33 33 ]; 34 34 35 - preConfigure = let 36 - storePrefixLen = builtins.toString ((builtins.stringLength builtins.storeDir) + 1); 37 - in '' 38 - # "NIX:" is reserved for saved qmlc files in patch 0001, "QTDHASH:" takes the place 39 - # of the old tag, which is otherwise the qt version, invalidating caches from other 40 - # qtdeclarative store paths. 41 - echo "QTDHASH:''${out:${storePrefixLen}:32}" > .tag 42 - ''; 35 + preConfigure = 36 + let 37 + storePrefixLen = builtins.toString ((builtins.stringLength builtins.storeDir) + 1); 38 + in 39 + '' 40 + # "NIX:" is reserved for saved qmlc files in patch 0001, "QTDHASH:" takes the place 41 + # of the old tag, which is otherwise the qt version, invalidating caches from other 42 + # qtdeclarative store paths. 43 + echo "QTDHASH:''${out:${storePrefixLen}:32}" > .tag 44 + ''; 43 45 44 46 cmakeFlags = 45 47 [ ··· 52 54 "-DQt6QmlTools_DIR=${pkgsBuildBuild.qt6.qtdeclarative}/lib/cmake/Qt6QmlTools" 53 55 ]; 54 56 55 - meta.maintainers = with lib.maintainers; [ nickcao outfoxxed ]; 57 + meta.maintainers = with lib.maintainers; [ 58 + nickcao 59 + outfoxxed 60 + ]; 56 61 }