From 534d6caa0b41fa762b7db81962512a809e1918c7 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 24 Jun 2020 23:57:56 +0200 Subject: gnu: Add "static" output to Haskell packages with custom outputs. All these packages have non-standard outputs. As a result the build system cannot automatically add the "static" output, so we do this manually. * gnu/packages/haskell-check.scm (ghc-quickcheck, ghc-hunit)[outputs]: Add "static" output. * gnu/packages/haskell-web.scm (ghc-http)[outputs]: Same. * gnu/packages/haskell-xyz.scm (ghc-case-insensitive, ghc-fgl, ghc-hashable, ghc-network, ghc-network-uri, ghc-parallel, ghc-paths, ghc-primitive, ghc-random, ghc-split, ghc-syb, ghc-tf-random, ghc-unordered-containers, ghc-vector, ghc-zlib)[outputs]: Same. --- gnu/packages/haskell-check.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/haskell-check.scm') diff --git a/gnu/packages/haskell-check.scm b/gnu/packages/haskell-check.scm index c2cffbad9e..e50c7d7eea 100644 --- a/gnu/packages/haskell-check.scm +++ b/gnu/packages/haskell-check.scm @@ -489,7 +489,7 @@ use HUnit assertions as QuickCheck properties.") (package (name "ghc-quickcheck") (version "2.13.2") - (outputs '("out" "doc")) + (outputs '("out" "static" "doc")) (source (origin (method url-fetch) @@ -651,7 +651,7 @@ using Template Haskell") (package (name "ghc-hunit") (version "1.6.0.0") - (outputs '("out" "doc")) + (outputs '("out" "static" "doc")) (source (origin (method url-fetch) -- cgit v1.2.3 From d65a30254619ff271f8fae0ba35d48c290742c3a Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Fri, 26 Jun 2020 15:20:07 +0200 Subject: gnu: ghc-hspec: Add "doc" output. * gnu/packages/haskell-check.scm (ghc-hspec)[outputs]: Add "doc" output next to "out" and "static". --- gnu/packages/haskell-check.scm | 1 + 1 file changed, 1 insertion(+) (limited to 'gnu/packages/haskell-check.scm') diff --git a/gnu/packages/haskell-check.scm b/gnu/packages/haskell-check.scm index e50c7d7eea..7f7bc22da5 100644 --- a/gnu/packages/haskell-check.scm +++ b/gnu/packages/haskell-check.scm @@ -766,6 +766,7 @@ used to test the in-development version of Hspec.") (base32 "1x8rcr7j1azcaw0fg1xzp8j0gr4ias36z09aj24i4xp8pnyfp341")))) (build-system haskell-build-system) + (outputs '("out" "static" "doc")) (inputs `(("ghc-hspec-core" ,ghc-hspec-core) ("hspec-discover" ,hspec-discover) -- cgit v1.2.3