diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-04-08 14:07:53 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-04-08 14:07:53 +0200 |
commit | c397e502ca4f9a929e213e1c728b942a007ee278 (patch) | |
tree | 27c9b2834ff7c0081b25ac965384e010c848d197 /gnu/packages/cdrom.scm | |
parent | c9501414957e04106531e53ee7a06b0d07ff4ac3 (diff) | |
download | guix-c397e502ca4f9a929e213e1c728b942a007ee278.tar guix-c397e502ca4f9a929e213e1c728b942a007ee278.tar.gz |
gnu: dvdisaster: Build sequentially.
* gnu/packages/cdrom.scm (dvdisaster)[arguments]: Add #:parallel-build? #f.
Diffstat (limited to 'gnu/packages/cdrom.scm')
-rw-r--r-- | gnu/packages/cdrom.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/cdrom.scm b/gnu/packages/cdrom.scm index 942f898210..11bfa2f7cf 100644 --- a/gnu/packages/cdrom.scm +++ b/gnu/packages/cdrom.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr> ;;; ;;; This file is part of GNU Guix. @@ -189,7 +189,10 @@ reconstruction capability.") ("pkg-config" ,pkg-config) ("which" ,which))) (arguments - `(#:tests? #f)) ; no check target + `(;; Parallel builds appear to be unsafe, see + ;; <http://hydra.gnu.org/build/49331/nixlog/1/raw>. + #:parallel-build? #f + #:tests? #f)) ; no check target (home-page "http://dvdisaster.net/en/index.html") (synopsis "error correcting codes for optical media images") (description "Optical media (CD,DVD,BD) keep their data only for a |