diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2018-11-21 15:17:12 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2018-11-21 15:43:23 +0200 |
commit | 24a2e19c432580a1a4900417ce81a4826e41e8f4 (patch) | |
tree | 3c9be10715cbf0b69b2918dce8911377abd214f2 /gnu/packages/python.scm | |
parent | 4e94cdb652ca30b74ad68153da976827c8ea16a2 (diff) | |
download | guix-24a2e19c432580a1a4900417ce81a4826e41e8f4.tar.gz guix-24a2e19c432580a1a4900417ce81a4826e41e8f4.zip |
gnu: python-waf: Use a proper directory structure.
Fixes <https://bugs.gnu.org/25634>.
* gnu/packages/python.scm (python-waf): Replace custom 'install phase to
install "waf" binary into the bin directory. Remove the 'wrap phase.
* gnu/packages/video.scm (mpv)[arguments]: Adjust the 'setup-waf phase
accordingly.
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r-- | gnu/packages/python.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 1e67640763..07ab0e5293 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5607,9 +5607,12 @@ so it might be a tiny bit slower.") (lambda _ (invoke "python" "waf" "--version"))) (replace 'install - (lambda _ - (copy-file "waf" %output) - #t))))) + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (install-file "waf" (string-append out "/bin"))) + #t)) + ;; waf breaks when it is wrapped. + (delete 'wrap)))) (home-page "https://waf.io/") (synopsis "Python-based build system") (description |