diff options
author | Timothy Sample <samplet@ngyro.com> | 2020-02-21 23:48:37 -0500 |
---|---|---|
committer | Timothy Sample <samplet@ngyro.com> | 2020-02-21 23:56:27 -0500 |
commit | 4b807ef87c4634e8bea1431d47ee3df3b519145d (patch) | |
tree | 402ee5554f4668ca2b31c4ac7f1fe2717856d39e /gnu | |
parent | a82cf70e8ae4c8dcf03d2633f09dcfc8bb6d6d1e (diff) | |
download | guix-4b807ef87c4634e8bea1431d47ee3df3b519145d.tar guix-4b807ef87c4634e8bea1431d47ee3df3b519145d.tar.gz |
gnu: bootar: Update to 1a.
* gnu/packages/commencement.scm (bootar): Update to 1a; remove BZip2
workaround for 32-bit platforms.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/commencement.scm | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index dc5d9a1bcf..dfc913e537 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -86,13 +86,13 @@ (define bootar (package (name "bootar") - (version "1") + (version "1a") (source (origin (method url-fetch) - (uri "https://files.ngyro.com/bootar/bootar-1.ses") + (uri "https://files.ngyro.com/bootar/bootar-1a.ses") (sha256 (base32 - "011p0nky2qp0vmyhvdx220qywxxp7a0m6pvy0lzzg4qxbpyqpf0r")))) + "0mvp6vgx0q316fvy3z2lddlc5xgq5np3bm1fypgvj6dnayibg9np")))) (build-system gnu-build-system) (arguments `(#:implicit-inputs? #f @@ -111,16 +111,6 @@ (guile (string-append guile-dir "/bin/guile"))) (invoke guile "--no-auto-compile" source) (chdir "bootar") - ;; (commencement bzip2) breaks tar on x86, see - ;; https://bugs.gnu.org/39699 - (delete-file "scripts/bzip2.in") - (delete-file "compression/bzip2.scm") - (with-output-to-file "compression/bzip2.scm" - (lambda _ - (display "(define-module (compression bzip2)) -(define-public is-bzip2-file? (const #f)) -(define-public make-bzip2-input-port (const #f)) -"))) #t))) (replace 'configure (bootstrap-configure ,version "." "scripts")) (replace 'build (bootstrap-build ".")) |