Merge pull request #265583 from amjoseph-nixpkgs/qt5.qtdeclarative-conditional

qtdeclarative: remove unnecessary postFixup
This commit is contained in:
Artturi 2023-11-05 10:18:18 +02:00 committed by GitHub
commit 6e53b4f5de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,10 +23,4 @@ qtModule {
"bin/qmlscene"
"bin/qmltestrunner"
];
postFixup = lib.optionalString (stdenv.buildPlatform != stdenv.hostPlatform) ''
mv $dev/bin/qmlformat $bin/bin/qmlformat
mv $dev/bin/qmltyperegistrar $bin/bin/qmltyperegistrar
ln -s $bin/bin/qmlformat $dev/bin/qmlformat
ln -s $bin/bin/qmltyperegistrar $dev/bin/qmltyperegistrar
'';
}