Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 16 lines 401 B view raw
1{ mkKdeDerivation 2, python3 3}: 4mkKdeDerivation { 5 pname = "extra-cmake-modules"; 6 7 outputs = [ "out" ]; 8 9 # Packages that have an Android APK (e.g. KWeather) require Python3 at build time. 10 # See: https://invent.kde.org/frameworks/extra-cmake-modules/-/blob/v6.1.0/modules/ECMAddAndroidApk.cmake?ref_type=tags#L57 11 propagatedNativeBuildInputs = [ 12 python3 13 ]; 14 15 setupHook = ./ecm-hook.sh; 16}