diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm index e0f07832f2ee7a6709578e17160bad80e1b25acc..5b7f2e937c8cfa599d3bf28316d2b07764bce64f 100644 --- a/gnu/packages/text-editors.scm +++ b/gnu/packages/text-editors.scm @@ -727,7 +727,14 @@ (define-public editorconfig-core-c (lambda* (#:key inputs #:allow-other-keys) (let ((tests (assoc-ref inputs "tests"))) (copy-recursively tests "tests")) - #t))))) + #t)) + (add-after 'install 'delete-static-library + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (lib (string-append out "/lib"))) + (with-directory-excursion lib + (delete-file "libeditorconfig_static.a")) + #t)))))) (native-inputs `(("tests" ,(origin