From 4adca0ccc6fd7ec8455f678c047f3ecc2ea9f12d Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Mon, 27 Oct 2025 13:59:18 +0900 Subject: Skip tests for buggy packages --- loftix/bugs.scm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/loftix/bugs.scm b/loftix/bugs.scm index f46ecfd..9400ecc 100644 --- a/loftix/bugs.scm +++ b/loftix/bugs.scm @@ -270,14 +270,18 @@ (add-before 'configure 'set-env (lambda _ (use-modules (loftix transform)) - (append-env "LDFLAGS" "-static" #f)))))))) + (append-env "LDFLAGS" "-static" #f)))))) + ((#:tests? _ #f) + #f))) ((gnu) (substitute-keyword-arguments (package-arguments base) ((#:make-flags flags #~'()) (with-imported-modules '((loftix transform)) #~((@ (loftix transform) append-make-flag) #$flags - '(("LDFLAGS" "-static"))))))))))) + '(("LDFLAGS" "-static"))))) + ((#:tests? _ #f) + #f))))))) (define-public jasper-static-1.900.5 (static jasper-1.900.5)) (define-public jasper-static-1.900.3 (static jasper-1.900.3)) -- cgit 1.4.1