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>master
parent
f60653a0ef
commit
01df491f6d
|
@ -2500,7 +2500,7 @@ YouTube.com and many more sites.")
|
|||
(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.
|
||||
|
|
Reference in New Issue