diff options
author | Ivan Petkov <ivanppetkov@gmail.com> | 2019-05-22 20:50:47 -0700 |
---|---|---|
committer | Ivan Petkov <ivanppetkov@gmail.com> | 2019-06-17 19:46:05 -0700 |
commit | 0ab5e91e1ced624c51cecc2693deb7c789fe1f07 (patch) | |
tree | 03165359ea279906bd64cb0a97505698fcd4ff6c | |
parent | 46dc940c9af3d8b48966d16e52273ba88e92f946 (diff) | |
download | guix-0ab5e91e1ced624c51cecc2693deb7c789fe1f07.tar guix-0ab5e91e1ced624c51cecc2693deb7c789fe1f07.tar.gz |
gnu: rust: Update to 1.35.0.
* gnu/packages/rust.scm (rust): Rename to...
(rust-1.34): ...this.
(rust): New variable.
-rw-r--r-- | gnu/packages/rust.scm | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm index 3f5ec590a9..9c8088b2f7 100644 --- a/gnu/packages/rust.scm +++ b/gnu/packages/rust.scm @@ -1048,7 +1048,7 @@ jemalloc = \"" jemalloc "/lib/libjemalloc_pic.a" "\" (setenv "RUST_TEST_THREADS" "2") #t))))))))) -(define-public rust +(define-public rust-1.34 (let ((base-rust (rust-bootstrapped-package rust-1.33 "1.34.1" "19s09k7y5j6g3y4d2rk6kg9pvq6ml94c49w6b72dmq8p9lk8bixh"))) @@ -1062,3 +1062,23 @@ jemalloc = \"" jemalloc "/lib/libjemalloc_pic.a" "\" (delete-file-recursively "src/llvm-project") (delete-file-recursively "vendor/jemalloc-sys/jemalloc") #t))))))) + +(define-public rust + (let ((base-rust + (rust-bootstrapped-package rust-1.34 "1.35.0" + "0bbizy6b7002v1rdhrxrf5gijclbyizdhkglhp81ib3bf5x66kas"))) + (package + (inherit base-rust) + (arguments + (substitute-keyword-arguments (package-arguments base-rust) + ((#:phases phases) + `(modify-phases ,phases + ;; The tidy test includes a pass which ensures large binaries + ;; don't accidentally get checked into the rust git repo. + ;; Unfortunately the test assumes that git is always available, + ;; so we'll comment out the invocation of this pass. + (add-after 'configure 'disable-tidy-bins-check + (lambda* _ + (substitute* "src/tools/tidy/src/main.rs" + (("bins::check") "//bins::check")) + #t))))))))) |