mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: yt-dlp: Don't ask to run tests when cross-compiling.
* gnu/packages/video.scm (yt-dlp)[arguments]{#:tests?}: When cross-compiling, set to #false. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
f60653a0ef
commit
01df491f6d
1 changed files with 1 additions and 1 deletions
|
@ -2500,7 +2500,7 @@ (define-public yt-dlp
|
|||
(base32 "07qz1zdndlpki0asw35zk5hdjcwpl3n1g54nxg4yb1iykbyv7rll"))))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments youtube-dl)
|
||||
((#:tests? _) #t)
|
||||
((#:tests? _) (not (%current-target-system)))
|
||||
((#:phases phases)
|
||||
#~(modify-phases #$phases
|
||||
;; See the comment for the corresponding phase in youtube-dl.
|
||||
|
|
Loading…
Reference in a new issue