diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index e80c192a50..1340bef8f0 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -280,6 +280,14 @@ (define-public rtmpdump (string-append "prefix=" (assoc-ref %outputs "out"))) #:phases (modify-phases %standard-phases + (add-after 'unpack 'omit-static-library + (lambda _ + (substitute* "librtmp/Makefile" + (("cp librtmp\\.a .*") ; don't install it + "") + (("librtmp\\.a ") ; don't build it + "")) + #t)) (delete 'configure)))) (inputs `(("openssl" ,openssl-1.0)