2024-05-15 15:35:15 +00:00
|
|
|
{ mkKdeDerivation
|
|
|
|
, python3
|
|
|
|
}:
|
2024-02-29 20:09:43 +00:00
|
|
|
mkKdeDerivation {
|
|
|
|
pname = "extra-cmake-modules";
|
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
outputs = [ "out" ];
|
|
|
|
|
|
|
|
# Packages that have an Android APK (e.g. KWeather) require Python3 at build time.
|
|
|
|
# See: https://invent.kde.org/frameworks/extra-cmake-modules/-/blob/v6.1.0/modules/ECMAddAndroidApk.cmake?ref_type=tags#L57
|
|
|
|
propagatedNativeBuildInputs = [
|
|
|
|
python3
|
|
|
|
];
|
2024-02-29 20:09:43 +00:00
|
|
|
|
|
|
|
setupHook = ./ecm-hook.sh;
|
|
|
|
}
|