From eb18a37d60039c5f67f7cb923c88433159a8387c Mon Sep 17 00:00:00 2001 From: John Soo Date: Sun, 17 Nov 2019 08:25:53 -0800 Subject: [PATCH 3/3] gnu: hoogle: Remove invalid library. * gnu/packages/haskell-apps.scm (hoogle): Remove invalid library from output. --- gnu/packages/haskell-apps.scm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gnu/packages/haskell-apps.scm b/gnu/packages/haskell-apps.scm index 5a16b1bb91..1e79294737 100644 --- a/gnu/packages/haskell-apps.scm +++ b/gnu/packages/haskell-apps.scm @@ -500,6 +500,13 @@ unwanted suggestions, and to add your own custom suggestions.") ("ghc-warp" ,ghc-warp) ("ghc-warp-tls" ,ghc-warp-tls) ("ghc-zlib" ,ghc-zlib))) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'install 'remove-lib + (lambda* (#:key outputs #:allow-other-keys) + (delete-file-recursively + (string-append (assoc-ref outputs "out") "/lib"))))))) (home-page "https://hoogle.haskell.org/") (synopsis "Haskell API Search") (description "Hoogle is a Haskell API search engine, which allows -- 2.24.0