On Thu, Mar 15, 2018 at 02:36:51PM -0400, Leo Famulari wrote: > (define-public icedtea-8 > - (let* ((version "3.6.0") > + (let* ((version "3.7.0") > (drop (lambda (name hash) > (origin > (method url-fetch) > @@ -1579,7 +1579,7 @@ IcedTea build harness.") > "/icedtea8/" version "/" name ".tar.xz")) > (sha256 (base32 hash)))))) > (package (inherit icedtea-7) > - (version "3.6.0") > + (version version) I remembered why this variable is declared twice for icedtea-8: it otherwise inherits the version of icedtea-7 here. So, I've fixed this locally.