diff options
author | Marius Bakke <marius@gnu.org> | 2020-11-28 22:39:12 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2020-11-28 22:39:12 +0100 |
commit | 4dadb4977908028bb0651d43ed4813cc988db92d (patch) | |
tree | 4647ae542d36e146fa91f728084b603dbfda6fa3 /guix/build-system/haskell.scm | |
parent | fe5c9051cc25bd81aa6c88f5de06f10ff9532441 (diff) | |
parent | e827f40479dc6b652fbb92fe8a64b50cec83731b (diff) |
Merge branch 'staging'
Diffstat (limited to 'guix/build-system/haskell.scm')
-rw-r--r-- | guix/build-system/haskell.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/guix/build-system/haskell.scm b/guix/build-system/haskell.scm index 8304e3b222..18a584f782 100644 --- a/guix/build-system/haskell.scm +++ b/guix/build-system/haskell.scm @@ -1,6 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch> ;;; Copyright © 2020 Timothy Sample <samplet@ngyro.com> +;;; Copyright © 2020 Simon Tournier <zimon.toutoune@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -121,7 +122,9 @@ version REVISION." (haddock-flags ''()) (tests? #t) (test-target "test") - (parallel-build? #t) + ;; FIXME: Parallel builds lead to indeterministic + ;; results, see <http://issues.guix.gnu.org/43843#3>. + (parallel-build? #f) (configure-flags ''()) (extra-directories ''()) (phases '(@ (guix build haskell-build-system) |