gnu: qtbase: Do not capture Python from native-inputs.
* gnu/packages/qt.scm (qtbase) [phases]: Add do-not-capture-python phase.
This commit is contained in:
parent
b6e7fe40e5
commit
4012ec0276
1 changed files with 6 additions and 0 deletions
|
@ -695,6 +695,12 @@ developers using C++ or QML, a CSS & JavaScript like language.")
|
|||
(substitute* "src/corelib/CMakeLists.txt"
|
||||
(("/bin/ls")
|
||||
(search-input-file inputs "bin/ls")))))
|
||||
(add-after 'patch-source-shebangs 'do-not-capture-python
|
||||
(lambda _
|
||||
(substitute* '("mkspecs/features/uikit/devices.py"
|
||||
"util/testrunner/qt-testrunner.py")
|
||||
(((which "python3"))
|
||||
"/usr/bin/env python3"))))
|
||||
(replace 'configure
|
||||
(assoc-ref %standard-phases 'configure))
|
||||
(replace 'build
|
||||
|
|
Reference in a new issue