diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-02-13 12:24:21 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-02-13 13:37:41 +0100 |
commit | 0498d1689d41381e240a4ea4dc7aaa0c905b55b1 (patch) | |
tree | 1f0a574fb0e386a0f0407c2500d59ea69312039e | |
parent | 97bfe0d759b168f438f51b9c8ed9b41ac0071b70 (diff) |
gnu: darcs: Update to 2.12.5.
* gnu/packages/version-control.scm (darcs): Update to 2.12.5.
[arguments]: Relax version constraint on shelly.
-rw-r--r-- | gnu/packages/version-control.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index e6c0d7d9e0..8518fabb78 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -1604,7 +1604,7 @@ be served with a HTTP file server of your choice.") (define-public darcs (package (name "darcs") - (version "2.12.4") + (version "2.12.5") (source (origin (method url-fetch) @@ -1612,7 +1612,7 @@ be served with a HTTP file server of your choice.") "darcs-" version ".tar.gz")) (sha256 (base32 - "0jfwiwl5k8wspciq1kpmvh5yap4japrf97s9pvhcybxxhaj3ds28")) + "0lrm0sal5pl453mkqn8b9fc9l7lwinc140iqihya9g17bk408nrm")) (modules '((guix build utils))) ;; Remove time-dependent code for reproducibility. (snippet @@ -1627,8 +1627,10 @@ be served with a HTTP file server of your choice.") (arguments `(#:configure-flags '("-fpkgconfig" "-fcurl" "-flibiconv" "-fthreaded" "-fnetwork-uri" "-fhttp" "--flag=executable" - "--flag=library") - #:tests? #f)) ; 20 failing shell tests out of over 400 + "--flag=library" + "--allow-newer=shelly") + ;; FIXME: darcs is not compatible with the latest QuickCheck + #:tests? #f)) (inputs `(("ghc-cmdargs" ,ghc-cmdargs) ("ghc-split" ,ghc-split) |