summaryrefslogtreecommitdiff
path: root/gnu/packages/rust.scm
blob: d98bd876ced60a027fcd9b539e6f84b5152a61c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016 David Craven <david@craven.ch>
;;; Copyright © 2016 Eric Le Bihan <eric.le.bihan.dev@free.fr>
;;; Copyright © 2016 Nikita <nikita@n0.is>
;;; Copyright © 2017 Ben Woodcroft <donttrustben@gmail.com>
;;; Copyright © 2017, 2018 Nikolai Merinov <nikolai.merinov@member.fsf.org>
;;; Copyright © 2017, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2018 Danny Milosavljevic <dannym+a@scratchpost.org>
;;; Copyright © 2019 Ivan Petkov <ivanppetkov@gmail.com>
;;; Copyright © 2020, 2021 Jakub Kądziołka <kuba@kadziolka.net>
;;; Copyright © 2020 Pierre Langlois <pierre.langlois@gmx.com>
;;; Copyright © 2020 Matthew Kraai <kraai@ftbfs.org>
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages rust)
  #:use-module (gnu packages base)
  #:use-module (gnu packages bison)
  #:use-module (gnu packages bootstrap)
  #:use-module (gnu packages cmake)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages curl)
  #:use-module (gnu packages elf)
  #:use-module (gnu packages flex)
  #:use-module (gnu packages gcc)
  #:use-module (gnu packages gdb)
  #:use-module (gnu packages jemalloc)
  #:use-module (gnu packages linux)
  #:use-module (gnu packages llvm)
  #:use-module (gnu packages pkg-config)
  #:use-module (gnu packages python)
  #:use-module (gnu packages ssh)
  #:use-module (gnu packages tls)
  #:use-module (gnu packages)
  #:use-module (guix build-system cargo)
  #:use-module (guix build-system gnu)
  #:use-module (guix build-system trivial)
  #:use-module (guix download)
  #:use-module (guix git-download)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module ((guix build utils) #:select (alist-replace))
  #:use-module (guix utils)
  #:use-module (ice-9 match)
  #:use-module (srfi srfi-26))

;; This is the hash for the empty file, and the reason it's relevant is not
;; the most obvious.
;;
;; The root of the problem is that Cargo keeps track of a file called
;; Cargo.lock, that contains the hash of the tarball source of each dependency.
;;
;; However, tarball sources aren't handled well by Guix because of the need to
;; patch shebangs in any helper scripts. This is why we use Cargo's vendoring
;; capabilities, where instead of the tarball, a directory is provided in its
;; place. (In the case of rustc, the source code already ships with vendored
;; dependencies, but crates built with cargo-build-system undergo vendoring
;; during the build.)
;;
;; To preserve the advantages of checksumming, vendored dependencies contain
;; a file called .cargo-checksum.json, which contains the hash of the tarball,
;; as well as the list of files in it, with the hash of each file.
;;
;; The patch-cargo-checksums phase of cargo-build-system runs after
;; any Guix-specific patches to the vendored dependencies and regenerates the
;; .cargo-checksum.json files, but it's hard to know the tarball checksum that
;; should be written to the file - and taking care of any unhandled edge case
;; would require rebuilding everything that depends on rust. This is why we lie,
;; and say that the tarball has the hash of an empty file. It's not a problem
;; because cargo-build-system removes the Cargo.lock file. We can't do that
;; for rustc because of a quirk of its build system, so we modify the lock file
;; to substitute the hash.
(define %cargo-reference-hash
  "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855")

(define* (nix-system->gnu-triplet-for-rust
          #:optional (system (%current-system)))
  (match system
    ("x86_64-linux"   "x86_64-unknown-linux-gnu")
    ("i686-linux"     "i686-unknown-linux-gnu")
    ("armhf-linux"    "armv7-unknown-linux-gnueabihf")
    ("aarch64-linux"  "aarch64-unknown-linux-gnu")
    ("mips64el-linux" "mips64el-unknown-linux-gnuabi64")
    (_                (nix-system->gnu-triplet system))))

(define* (rust-uri version #:key (dist "static"))
  (string-append "https://" dist ".rust-lang.org/dist/"
                 "rustc-" version "-src.tar.gz"))

(define* (rust-bootstrapped-package base-rust version checksum)
  "Bootstrap rust VERSION with source checksum CHECKSUM using BASE-RUST."
  (package
    (inherit base-rust)
    (version version)
    (source
     (origin
       (inherit (package-source base-rust))
       (uri (rust-uri version))
       (sha256 (base32 checksum))))
    (native-inputs
     (alist-replace "cargo-bootstrap" (list base-rust "cargo")
                    (alist-replace "rustc-bootstrap" (list base-rust)
                                   (package-native-inputs base-rust))))))

;;; Note: mrustc's only purpose is to be able to bootstap Rust; it's designed
;;; to be used in source form.
(define %mrustc-source
  (let ((name "mrustc")
        (version "0.9"))
    (origin
      (method git-fetch)
      (uri (git-reference
            (url "https://github.com/thepowersgang/mrustc")
            (commit (string-append "v" version))))
      (file-name (git-file-name name version))
      (sha256
       (base32
        "194ny7vsks5ygiw7d8yxjmp1qwigd71ilchis6xjl6bb2sj97rd2")))))

;;; Rust 1.29 is special in that it is built with mrustc, which shortens the
;;; bootstrap path.  Note: the build is non-deterministic.
(define-public rust-1.29
  (package
    (name "rust")
    (version "1.29.2")
    (source
     (origin
       (method url-fetch)
       (uri (rust-uri version))
       (sha256 (base32 "1jb787080z754caa2w3w1amsygs4qlzj9rs1vy64firfmabfg22h"))
       (modules '((guix build utils)))
       (snippet '(for-each delete-file-recursively
                           '("src/jemalloc"
                             "src/llvm"
                             "src/llvm-emscripten")))
       (patches (search-patches
                 "rust-1.25-accept-more-detailed-gdb-lines.patch"
                 "rust-reproducible-builds.patch"))))
    (outputs '("out" "cargo"))
    (properties '((timeout . 72000)           ;20 hours
                  (max-silent-time . 18000))) ;5 hours (for armel)
    (build-system gnu-build-system)
    (inputs
     `(("libcurl" ,curl)
       ("libssh2" ,libssh2)
       ;; Use llvm-7, which enables rust to be built reproducibly.
       ("llvm" ,llvm-7)
       ("openssl" ,openssl)
       ("zlib" ,zlib)))
    (native-inputs
     `(("bison" ,bison)
       ("flex" ,flex)
       ("pkg-config" ,pkg-config)
       ;; Required for the libstd sources.
       ("mrustc-source" ,%mrustc-source)))
    (arguments
     `(#:imported-modules ,%cargo-utils-modules ;for `generate-all-checksums'
       #:modules ((guix build cargo-utils)
                  (guix build utils)
                  (guix build gnu-build-system))
       #:test-target "test"
       ;; Rust's own .so library files are not found in any RUNPATH, but
       ;; that doesn't seem to cause issues.
       #:validate-runpath? #f
       #:make-flags
       (list ,(string-append "RUSTC_TARGET="
                             (or (%current-target-system)
                                 (nix-system->gnu-triplet-for-rust)))
             ,(string-append "RUSTCSRC=../"))
       #:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'patch-reference-to-cc
           ;; This prevents errors like 'error: linker `cc` not found' when
           ;; "cc" is not found on PATH.
           (lambda* (#:key inputs #:allow-other-keys)
             (let ((gcc (assoc-ref inputs "gcc")))
               (substitute* (find-files "." "^link.rs$")
                 (("\"cc\".as_ref")
                  (format #f "~s.as_ref" (string-append gcc "/bin/gcc")))))))
         (add-after 'unpack 'copy-mrustc-and-patch
           (lambda* (#:key inputs #:allow-other-keys)
             (copy-recursively (assoc-ref inputs "mrustc-source") "mrustc")
             (invoke "patch" "-p0" "-i" "mrustc/rustc-1.29.0-src.patch")))
         (add-after 'copy-mrustc-and-patch 'patch-makefiles
           ;; This disables building the (unbundled) LLVM.
           (lambda* (#:key inputs parallel-build? #:allow-other-keys)
             (let ((llvm (assoc-ref inputs "llvm"))
                   (job-spec (format #f "-j~a"
                                     (if parallel-build?
                                         (number->string (parallel-job-count))
                                         "1"))))
               (with-directory-excursion "mrustc"
                 (substitute* '("minicargo.mk"
                                "run_rustc/Makefile")
                   ;; Use the system-provided LLVM.
                   (("LLVM_CONFIG := .*")
                    (string-append "LLVM_CONFIG := " llvm "/bin/llvm-config\n"))
                   (("\\$\\(LLVM_CONFIG\\): .*")
                    "$(LLVM_CONFIG):\n")
                   (("\\$Vcd \\$\\(RUSTCSRC\\)build && \\$\\(MAKE\\).*")
                    "true\n"))
                 ;; Patch date.
                 (substitute* "Makefile"
                   (("shell date")
                    "shell date -d @1"))
                 (substitute* "run_rustc/Makefile"
                   (("[$]Vtime ")
                    "$V ")
                   ;; Unlock the number of parallel jobs for cargo.
                   (("-j [[:digit:]]+ ")
                    "")
                   ;; Patch the shebang of a generated wrapper for rustc, and
                   ;; make sure that \n newline escapes get interpreted
                   ;; correctly, specifying the '-e' option of echo.
                   (("echo '#!/bin/sh")
                    (string-append "echo -e '#!" (which "sh"))))))))
         (add-after 'patch-source-shebangs 'patch-cargo-checksums
           (lambda* _
             (substitute* "src/Cargo.lock"
               (("(\"checksum .* = )\".*\"" all name)
                (string-append name "\"" ,%cargo-reference-hash "\"")))
             (generate-all-checksums "src/vendor")))
         (replace 'configure
           (lambda _
             (setenv "CC" "gcc")
             (setenv "CXX" "g++")
             ;; The Guix LLVM package installs only shared libraries.
             (setenv "LLVM_LINK_SHARED" "1")
             ;; This is a workaround for
             ;; https://github.com/thepowersgang/mrustc/issues/138.
             (setenv "LIBSSH2_SYS_USE_PKG_CONFIG" "yes")))
         (delete 'patch-generated-file-shebangs)
         (replace 'build
           (lambda* (#:key make-flags parallel-build? #:allow-other-keys)
             (let* ((job-count (if parallel-build?
                                   (parallel-job-count)
                                   1))
                    (job-spec (string-append "-j" (number->string job-count)))
                    (make-flags* (cons job-spec make-flags)))
               ;; Adapted from:
               ;; https://github.com/dtolnay/bootstrap/blob/master/build.sh.
               (chdir "mrustc")
               (setenv "MINICARGO_FLAGS" job-spec)
               (setenv "CARGO_BUILD_JOBS" (number->string job-count))
               (display "Building rustc...\n")
               (apply invoke "make" "-f" "minicargo.mk" "output/rustc"
                      make-flags*)
               (display "Building cargo...\n")
               (apply invoke "make" "-f" "minicargo.mk" "output/cargo"
                      make-flags*)
               (display "Rebuilding stdlib with rustc...\n")
               (with-directory-excursion "run_rustc"
                 (apply invoke "make" "RUST_SRC=../../src/" make-flags*)))))
         (replace 'install
           (lambda* (#:key inputs outputs #:allow-other-keys)
             (let* ((out (assoc-ref outputs "out"))
                    (cargo (assoc-ref outputs "cargo"))
                    (bin (string-append out "/bin"))
                    (rustc (string-append bin "/rustc"))
                    (cargo-bin (string-append cargo "/bin"))
                    (lib (string-append out "/lib"))
                    (gnu-triplet ,(or (%current-target-system)
                                      (nix-system->gnu-triplet-for-rust)))
                    (system-lib-prefix (string-append lib "/rustlib/"
                                                      gnu-triplet "/lib")))
               (mkdir-p (dirname rustc))
               (copy-file "run_rustc/output/prefix/bin/rustc_binary" rustc)
               (wrap-program rustc
                 `("LD_LIBRARY_PATH" = (,system-lib-prefix)))
               (mkdir-p lib)
               (copy-recursively "run_rustc/output/prefix/lib" lib)
               (install-file "run_rustc/output/prefix/bin/cargo" cargo-bin)))))))
    (synopsis "Compiler for the Rust programming language")
    (description "Rust is a systems programming language that provides memory
safety and thread safety guarantees.")
    (home-page "https://github.com/thepowersgang/mrustc")
    ;; Dual licensed.
    (license (list license:asl2.0 license:expat))))

(define-public rust-1.30
  (package
    (name "rust")
    (version "1.30.1")
    (source (origin
              (inherit (package-source rust-1.29))
              (uri (rust-uri version))
              (sha256
               (base32 "0aavdc1lqv0cjzbqwl5n59yd0bqdlhn0zas61ljf38yrvc18k8rn"))
              (snippet '(for-each delete-file-recursively
                                  '("src/jemalloc"
                                    "src/llvm"
                                    "src/llvm-emscripten"
                                    "src/tools/clang"
                                    "src/tools/lldb")))))
    (outputs '("out" "cargo" "doc"))
    (properties '((timeout . 72000)           ;20 hours
                  (max-silent-time . 18000))) ;5 hours (for armel)
    (build-system gnu-build-system)
    (arguments
     `(#:tests? #t
       #:imported-modules ,%cargo-utils-modules ;for `generate-all-checksums'
       #:modules ((guix build utils)
                  (guix build gnu-build-system)
                  (ice-9 match)
                  (srfi srfi-1))
       #:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'set-env
           (lambda* (#:key inputs #:allow-other-keys)
             ;; Disable test for cross compilation support.
             (setenv "CFG_DISABLE_CROSS_TESTS" "1")
             (setenv "SHELL" (which "sh"))
             (setenv "CONFIG_SHELL" (which "sh"))
             (setenv "CC" (string-append (assoc-ref inputs "gcc") "/bin/gcc"))
             ;; The Guix LLVM package installs only shared libraries.
             (setenv "LLVM_LINK_SHARED" "1")))
         (add-after 'unpack 'relax-gdb-auto-load-safe-path
           ;; Allow GDB to load binaries from any location, otherwise the
           ;; GDB tests fail.
           (lambda _
             (setenv "HOME" (getcwd))
             (with-output-to-file (string-append (getenv "HOME") "/.gdbinit")
               (lambda _
                 (format #t "set auto-load safe-path /~%")))
             ;; Do not launch gdb with '-nx' which causes it to not execute
             ;; any init file.
             (substitute* "src/tools/compiletest/src/runtest.rs"
               (("\"-nx\".(to_owned|as_ref)\\(\\),")
                ""))
             ;; Patch the wrapper scripts to refer to the (not yet) built
             ;; rustc sysroot rather than the earlier one used as a bootstrap.
             (substitute* '("src/etc/rust-gdb"
                            "src/etc/rust-gdbgui"
                            "src/etc/rust-lldb")
               (("^RUSTC_SYSROOT.*")
                (string-append "RUSTC_SYSROOT=" (getcwd) "/build/"
                               ,(nix-system->gnu-triplet-for-rust)
                               "/stage2")))))
         (add-after 'unpack 'patch-tests
           (lambda* (#:key inputs #:allow-other-keys)
             (let ((bash (assoc-ref inputs "bash")))
               (substitute* "src/libstd/process.rs"
                 (("\"/bin/sh\"")
                  (format #f "~s" (which "sh"))))
               (substitute* "src/libstd/net/tcp.rs"
                 ;; There is no network in build environment
                 (("fn connect_timeout_unroutable")
                  "#[ignore]\nfn connect_timeout_unroutable"))
               ;; <https://lists.gnu.org/archive/html/guix-devel/2017-06/msg00222.html>
               (substitute* "src/libstd/sys/unix/process/process_common.rs"
                 (("fn test_process_mask") "#[allow(unused_attributes)]
    #[ignore]
    fn test_process_mask"))
               ;; This test is known to be flaky (see:
               ;; https://github.com/rust-lang/rust/issues/55503).
               (substitute* "src/libstd/process.rs"
                 (("fn test_inherit_env")
                  "#[ignore]\nfn test_inherit_env"))
               ;; This one also (see:
               ;; https://github.com/rust-lang/rust/commit/
               ;; a1580e72daee5fa9b7a61a74a20326b8c5741177)
               (substitute* "src/libstd/net/tcp.rs"
                 (("fn fast_rebind")
                  "#[ignore]\nfn fast_rebind")))))
         (add-after 'unpack 'remove-flaky-test
           (lambda _
             ;; See <https://github.com/rust-lang/rust/issues/43402>.
             (when (file-exists? "src/test/run-make/issue-26092")
               (delete-file-recursively "src/test/run-make/issue-26092"))))
         (add-after 'patch-tests 'neuter-tidy
           ;; We often need to patch tests with various Guix-specific paths.
           ;; This often increases the line length and makes tidy, rustc's
           ;; style checker, complain.  We could insert additional newlines or
           ;; add an "// ignore-tidy-linelength" comment, but as an ignore
           ;; comment must be used, both approaches are fragile due to
           ;; upstream formatting changes.  As such, disable running the
           ;; linter during tests, since it's intended for rustc developers
           ;; anyway.
           (lambda _
             (substitute* "src/bootstrap/builder.rs"
               ((".*::Tidy,.*")
                ""))))
         (add-after 'patch-tests 'disable-debuginfo-test
           (lambda _
             ;; The GDB tests fail.
             (substitute* "src/bootstrap/builder.rs"
               ((".*test::Debuginfo,.*")
                ""))))
         (add-after 'patch-tests 'patch-cargo-index-update
           (lambda* _
             (substitute* "src/tools/cargo/tests/testsuite/generate_lockfile.rs"
               ;; This test wants to update the crate index.
               (("fn no_index_update") "#[ignore]\nfn no_index_update"))))
         (add-after 'patch-tests 'patch-aarch64-test
           (lambda* _
             (substitute* "src/librustc_metadata/dynamic_lib.rs"
               ;; This test is known to fail on aarch64 and powerpc64le:
               ;; https://github.com/rust-lang/rust/issues/45410
               (("fn test_loading_cosine") "#[ignore]\nfn test_loading_cosine"))
             ;; This test fails on aarch64 with llvm@6.0:
             ;; https://github.com/rust-lang/rust/issues/49807
             ;; other possible solution:
             ;; https://github.com/rust-lang/rust/pull/47688
             (delete-file
              "src/test/debuginfo/by-value-self-argument-in-trait-impl.rs")))
         (add-after 'patch-tests 'remove-unsupported-tests
           (lambda* _
             ;; Our ld-wrapper cannot process non-UTF8 bytes in LIBRARY_PATH.
             ;; <https://lists.gnu.org/archive/html/guix-devel/2017-06/msg00193.html>
             (delete-file-recursively
              "src/test/run-make-fulldeps/linker-output-non-utf8")))
         (add-after 'patch-tests 'disable-amd64-avx-test
           (lambda _
             (substitute* (match (find-files "." "^issue-44056.rs$")
                            ((file) file))
               (("only-x86_64") "ignore-test"))))
         (add-after 'patch-tests 'patch-cargo-tests
           (lambda _
             (substitute* '("src/tools/cargo/tests/testsuite/build.rs"
                            "src/tools/cargo/tests/testsuite/fix.rs")
               (("/usr/bin/env")
                (which "env")))
             (substitute* "src/tools/cargo/tests/testsuite/death.rs"
               ;; This is stuck when built in container.
               (("fn ctrl_c_kills_everyone")
                "#[ignore]\nfn ctrl_c_kills_everyone"))
             ;; Prints test output in the wrong order when built on
             ;; i686-linux.
             (substitute* "src/tools/cargo/tests/testsuite/test.rs"
               (("fn cargo_test_env")
                "#[ignore]\nfn cargo_test_env"))

             ;; These tests pull in a dependency on "git", which changes
             ;; too frequently take part in the Rust toolchain.
             (substitute* "src/tools/cargo/tests/testsuite/new.rs"
               (("fn author_prefers_cargo")
                "#[ignore]\nfn author_prefers_cargo")
               (("fn finds_author_git")
                "#[ignore]\nfn finds_author_git")
               (("fn finds_local_author_git")
                "#[ignore]\nfn finds_local_author_git"))))
         (add-after 'patch-cargo-tests 'patch-cargo-env-shebang
           (lambda* (#:key inputs #:allow-other-keys)
             (let ((coreutils (assoc-ref inputs "coreutils")))
               (substitute* "src/tools/cargo/tests/testsuite/fix.rs"
                 ;; Cargo has a test which explicitly sets a
                 ;; RUSTC_WRAPPER environment variable which points
                 ;; to /usr/bin/env. Since it's not a shebang, it
                 ;; needs to be manually patched
                 (("\"/usr/bin/env\"")
                  (string-append "\"" coreutils "/bin/env\""))))))
         (add-after 'patch-cargo-env-shebang 'ignore-cargo-package-tests
           (lambda* _
             (substitute* "src/tools/cargo/tests/testsuite/package.rs"
               ;; These tests largely check that cargo outputs warning/error
               ;; messages as expected. It seems that cargo outputs an
               ;; absolute path to something in the store instead of the
               ;; expected relative path (e.g. `[..]`) so we'll ignore
               ;; these for now
               (("fn include") "#[ignore]\nfn include")
               (("fn exclude") "#[ignore]\nfn exclude"))))
         (add-after 'patch-generated-file-shebangs 'patch-cargo-checksums
           (lambda* _
             (use-modules (guix build cargo-utils))
             (substitute* "src/Cargo.lock"
               (("(\"checksum .* = )\".*\"" all name)
                (string-append name "\"" ,%cargo-reference-hash "\"")))
             (generate-all-checksums "src/vendor")))
         (replace 'configure
           (lambda* (#:key inputs outputs #:allow-other-keys)
             (let* ((out (assoc-ref outputs "out"))
                    (doc (assoc-ref outputs "doc"))
                    (gcc (assoc-ref inputs "gcc"))
                    (gdb (assoc-ref inputs "gdb"))
                    (binutils (assoc-ref inputs "binutils"))
                    (python (assoc-ref inputs "python"))
                    (rustc (assoc-ref inputs "rustc-bootstrap"))
                    (cargo (assoc-ref inputs "cargo-bootstrap"))
                    (llvm (assoc-ref inputs "llvm"))
                    (jemalloc (assoc-ref inputs "jemalloc")))
               (call-with-output-file "config.toml"
                 (lambda (port)
                   (display (string-append "
[llvm]
[build]
cargo = \"" cargo "/bin/cargo" "\"
rustc = \"" rustc "/bin/rustc" "\"
docs = false
python = \"" python "/bin/python2" "\"
gdb = \"" gdb "/bin/gdb" "\"
vendor = true
submodules = false
[install]
prefix = \"" out "\"
docdir = \"" doc "/share/doc/rust" "\"
sysconfdir = \"etc\"
[rust]
default-linker = \"" gcc "/bin/gcc" "\"
channel = \"stable\"
rpath = true
[target." ,(nix-system->gnu-triplet-for-rust) "]
llvm-config = \"" llvm "/bin/llvm-config" "\"
cc = \"" gcc "/bin/gcc" "\"
cxx = \"" gcc "/bin/g++" "\"
ar = \"" binutils "/bin/ar" "\"
jemalloc = \"" jemalloc "/lib/libjemalloc_pic.a" "\"
[dist]
") port))))))
         (replace 'build
           (lambda* (#:key parallel-build? #:allow-other-keys)
             (let ((job-spec (string-append
                              "-j" (if parallel-build?
                                       (number->string (parallel-job-count))
                                       "1"))))
               (invoke "./x.py" job-spec "build")
               (invoke "./x.py" job-spec "build" "src/tools/cargo"))))
         (replace 'check
           (lambda* (#:key tests? parallel-build? #:allow-other-keys)
             (when tests?
               (let ((job-spec (string-append
                                "-j" (if parallel-build?
                                         (number->string (parallel-job-count))
                                         "1"))))
                 (invoke "./x.py" job-spec "test" "-vv")
                 (invoke "./x.py" job-spec "test" "src/tools/cargo")))))
         (replace 'install
           (lambda* (#:key outputs #:allow-other-keys)
             (let ((out (assoc-ref outputs "out"))
                   (cargo-out (assoc-ref outputs "cargo")))
               (mkdir-p out)
               (invoke "./x.py" "install")
               (substitute* "config.toml"
                 ;; Adjust the prefix to the 'cargo' output.
                 (("prefix = \"[^\"]*\"")
                  (format #f "prefix = ~s" cargo-out)))
               (mkdir-p cargo-out)
               (invoke "./x.py" "install" "cargo"))))
         (add-after 'install 'delete-install-logs
           (lambda* (#:key outputs #:allow-other-keys)
             (for-each (lambda (f)
                         (false-if-exception (delete-file f)))
                       (append-map (lambda (output)
                                     (find-files (string-append
                                                  output "/lib/rustlib")
                                                 "(^install.log$|^manifest-)"))
                                   (map cdr outputs)))))
         (add-after 'install 'wrap-rustc
           (lambda* (#:key inputs outputs #:allow-other-keys)
             (let ((out (assoc-ref outputs "out"))
                   (libc (assoc-ref inputs "libc"))
                   (ld-wrapper (assoc-ref inputs "ld-wrapper")))
               ;; Let gcc find ld and libc startup files.
               (wrap-program (string-append out "/bin/rustc")
                 `("PATH" ":" prefix (,(string-append ld-wrapper "/bin")))
                 `("LIBRARY_PATH" ":"
                   suffix (,(string-append libc "/lib"))))))))))
    (native-inputs
     `(("bison" ,bison)                 ; For the tests
       ("cmake" ,cmake-minimal)
       ("flex" ,flex)                   ; For the tests
       ("gdb" ,gdb-9.2)                 ; For the tests
       ("pkg-config" ,pkg-config)       ; For "cargo"
       ("procps" ,procps)               ; For the tests
       ("python" ,python-2)             ; For the tests
       ("rustc-bootstrap" ,rust-1.29)
       ("cargo-bootstrap" ,rust-1.29 "cargo")
       ("which" ,which)))
    (inputs
     `(("jemalloc" ,jemalloc-4.5.0)
       ("llvm" ,llvm-7)
       ("openssl" ,openssl)
       ("libssh2" ,libssh2)             ; For "cargo"
       ("libcurl" ,curl)))              ; For "cargo"
    ;; rustc invokes gcc, so we need to set its search paths accordingly.
    ;; Note: duplicate its value here to cope with circular dependencies among
    ;; modules (see <https://bugs.gnu.org/31392>).
    (native-search-paths
     (list (search-path-specification
            (variable "C_INCLUDE_PATH")
            (files '("include")))
           (search-path-specification
            (variable "CPLUS_INCLUDE_PATH")
            (files '("include/c++" "include")))
           (search-path-specification
            (variable "LIBRARY_PATH")
            (files '("lib" "lib64")))))
    (supported-systems '("x86_64-linux"))
    (synopsis "Compiler for the Rust progamming language")
    (description "Rust is a systems programming language that provides memory
safety and thread safety guarantees.")
    (home-page "https://www.rust-lang.org")
    ;; Dual licensed.
    (license (list license:asl2.0 license:expat))))

(define-public rust-1.31
  (let ((base-rust (rust-bootstrapped-package
                    rust-1.30 "1.31.1"
                    "0sk84ff0cklybcp0jbbxcw7lk7mrm6kb6km5nzd6m64dy0igrlli")))
    (package
      (inherit base-rust)
      (arguments
       (substitute-keyword-arguments (package-arguments base-rust)
         ((#:phases phases)
          `(modify-phases ,phases
             (delete 'disable-debuginfo-test)
             (add-after 'configure 'enable-docs
               ;; Docs are disabled in 1.30 as the doc tests fail.  Re-enable
               ;; them here.
               (lambda* _
                 (substitute* "config.toml"
                   (("docs = false")
                    "docs = true"))))
             (add-after 'patch-tests 'patch-command-exec-tests
               (lambda* (#:key inputs #:allow-other-keys)
                 (let ((coreutils (assoc-ref inputs "coreutils")))
                   (substitute* (match (find-files "." "^command-exec.rs$")
                                  ((file) file))
                     ;; This test suite includes some tests that the stdlib's
                     ;; `Command` execution properly handles in situations
                     ;; where the environment or PATH variable are empty, but
                     ;; this fails since we don't have `echo` available at its
                     ;; usual FHS location.
                     (("Command::new\\(\"echo\"\\)")
                      (string-append "Command::new(\""
                                     coreutils "/bin/echo\")"))))))
             (add-after 'patch-tests 'patch-process-docs-rev-cmd
               (lambda* _
                 ;; Disable some doc tests which depend on the "rev" command
                 ;; https://github.com/rust-lang/rust/pull/58746
                 (substitute* "src/libstd/process.rs"
                   (("```rust")
                    "```rust,no_run")))))))))))

(define-public rust-1.32
  (let ((base-rust (rust-bootstrapped-package
                    rust-1.31 "1.32.0"
                    "0ji2l9xv53y27xy72qagggvq47gayr5lcv2jwvmfirx029vlqnac")))
    (package
      (inherit base-rust)
      (source
       (origin
         (inherit (package-source base-rust))
         (snippet '(for-each delete-file-recursively
                             '("src/llvm"
                               "src/llvm-emscripten"
                               "src/tools/clang"
                               "src/tools/lldb"
                               "vendor/jemalloc-sys/jemalloc")))
         (patches (search-patches "rust-reproducible-builds.patch"))
          ;; the vendor directory has moved to the root of
          ;; the tarball, so we have to strip an extra prefix
         (patch-flags '("-p2"))))
      (arguments
       (substitute-keyword-arguments (package-arguments base-rust)
         ;; The test suite fails due to LLVM 7, required for the build to be
         ;; reproducible.
         ((#:tests? _ #t)
          #f)
         ((#:phases phases)
          `(modify-phases ,phases
             ;; Cargo.lock and the vendor/ directory have been moved to the
             ;; root of the rust tarball
             (replace 'patch-cargo-checksums
               (lambda* _
                 (use-modules (guix build cargo-utils))
                 (substitute* "Cargo.lock"
                   (("(\"checksum .* = )\".*\"" all name)
                    (string-append name "\"" ,%cargo-reference-hash "\"")))
                 (generate-all-checksums "vendor")))
             (add-after 'configure 'override-jemalloc
               (lambda* (#:key inputs #:allow-other-keys)
                 ;; The compiler is no longer directly built against jemalloc,
                 ;; but rather via the jemalloc-sys crate (which vendors the
                 ;; jemalloc source). To use jemalloc we must enable linking to
                 ;; it (otherwise it would use the system allocator), and set
                 ;; an environment variable pointing to the compiled jemalloc.
                 (substitute* "config.toml"
                   (("^jemalloc =.*$") "")
                   (("[[]rust[]]") "\n[rust]\njemalloc=true\n"))
                 (setenv "JEMALLOC_OVERRIDE" (string-append
                                              (assoc-ref inputs "jemalloc")
                                              "/lib/libjemalloc_pic.a"))))
             ;; Remove no longer relevant steps
             (delete 'remove-flaky-test)
             (delete 'patch-aarch64-test))))))))

(define-public rust-1.33
  (let ((base-rust (rust-bootstrapped-package
                    rust-1.32 "1.33.0"
                    "152x91mg7bz4ygligwjb05fgm1blwy2i70s2j03zc9jiwvbsh0as")))
    (package
      (inherit base-rust)
      (source
       (origin
         (inherit (package-source base-rust))
         (patches '())
         (patch-flags '("-p1"))))
      (inputs
       ;; Upgrade to jemalloc@5.1.0
       (alist-replace "jemalloc" (list jemalloc) (package-inputs base-rust)))
      (arguments
       (substitute-keyword-arguments (package-arguments base-rust)
         ((#:tests? _ #f)
          #t)
         ((#:phases phases)
             `(modify-phases ,phases
                (delete 'ignore-cargo-package-tests)
                (add-after 'configure 'configure-test-threads
                  ;; Several rustc and cargo tests will fail if run on one core
                  ;; https://github.com/rust-lang/rust/issues/59122
                  ;; https://github.com/rust-lang/cargo/issues/6746
                  ;; https://github.com/rust-lang/rust/issues/58907
                  (lambda* (#:key inputs #:allow-other-keys)
                    (setenv "RUST_TEST_THREADS" "2")))
                (add-after 'configure 'disable-codegen-tests
                  ;; The codegen tests fail in this version due to using LLVM
                  ;; 7.
                  (lambda _
                    (substitute* "config.toml"
                      (("rpath = .*" all)
                       (string-append all "codegen-tests = false\n"))))))))))))

(define-public rust-1.34
  (let ((base-rust (rust-bootstrapped-package
                    rust-1.33 "1.34.1"
                    "19s09k7y5j6g3y4d2rk6kg9pvq6ml94c49w6b72dmq8p9lk8bixh")))
    (package
      (inherit base-rust)
      (source
       (origin
         (inherit (package-source base-rust))
         (snippet '(for-each delete-file-recursively
                             '("src/llvm-emscripten"
                               "src/llvm-project"
                               "vendor/jemalloc-sys/jemalloc"))))))))

(define-public rust-1.35
  (let ((base-rust (rust-bootstrapped-package
                    rust-1.34 "1.35.0"
                    "0bbizy6b7002v1rdhrxrf5gijclbyizdhkglhp81ib3bf5x66kas")))
    (package
      (inherit base-rust)
      (inputs
       (alist-replace "llvm" (list llvm-8) (package-inputs base-rust)))
      (arguments
       (substitute-keyword-arguments (package-arguments base-rust)
         ((#:phases phases)
          `(modify-phases ,phases
             (delete 'disable-codegen-tests))))))))

(define-public rust-1.36
  (let ((base-rust (rust-bootstrapped-package
                    rust-1.35 "1.36.0"
                    "06xv2p6zq03lidr0yaf029ii8wnjjqa894nkmrm6s0rx47by9i04")))
    (package
      (inherit base-rust)
      (arguments
       (substitute-keyword-arguments (package-arguments base-rust)
         ((#:phases phases)
          `(modify-phases ,phases
             (delete 'patch-process-docs-rev-cmd))))))))

(define-public rust-1.37
  (let ((base-rust (rust-bootstrapped-package
                    rust-1.36 "1.37.0"
                    "1hrqprybhkhs6d9b5pjskfnc5z9v2l2gync7nb39qjb5s0h703hj")))
    (package
      (inherit base-rust)
      (arguments
       (substitute-keyword-arguments (package-arguments base-rust)
         ((#:phases phases)
          `(modify-phases ,phases
             (add-before 'configure 'configure-cargo-home
               (lambda _
                 (let ((cargo-home (string-append (getcwd) "/.cargo")))
                   (mkdir-p cargo-home)
                   (setenv "CARGO_HOME" cargo-home)))))))))))

(define-public rust-1.38
  (let ((base-rust (rust-bootstrapped-package
                    rust-1.37 "1.38.0"
                    "101dlpsfkq67p0hbwx4acqq6n90dj4bbprndizpgh1kigk566hk4")))
    (package
      (inherit base-rust)
      (inputs
       (alist-replace "llvm" (list llvm-9) (package-inputs base-rust)))
      (arguments
       (substitute-keyword-arguments (package-arguments base-rust)
         ((#:phases phases)
          `(modify-phases ,phases
             (add-after 'patch-tests 'patch-command-uid-gid-test
               (lambda _
                 (substitute* "src/test/ui/command-uid-gid.rs"
                   (("/bin/sh")
                    (which "sh"))))))))))))

(define-public rust-1.39
  (let ((base-rust (rust-bootstrapped-package
                    rust-1.38 "1.39.0"
                    "0mwkc1bnil2cfyf6nglpvbn2y0zfbv44zfhsd5qg4c9rm6vgd8dl")))
    (package
      (inherit base-rust)
      (arguments
       (substitute-keyword-arguments (package-arguments base-rust)
         ((#:phases phases)
          `(modify-phases ,phases
             (replace 'patch-cargo-checksums
               ;; The Cargo.lock format changed.
               (lambda* _
                 (use-modules (guix build cargo-utils))
                 (substitute* "Cargo.lock"
                   (("(checksum = )\".*\"" all name)
                    (string-append name "\"" ,%cargo-reference-hash "\"")))
                 (generate-all-checksums "vendor"))))))))))

(define-public rust-1.40
  (let ((base-rust (rust-bootstrapped-package
                    rust-1.39 "1.40.0"
                    "1ba9llwhqm49w7sz3z0gqscj039m53ky9wxzhaj11z6yg1ah15yx")))
    (package
      (inherit base-rust)
      (source
       (origin
         (inherit (package-source base-rust))
         ;; llvm-emscripten is no longer bundled, as that codegen backend
         ;; got removed.
         (snippet '(for-each delete-file-recursively
                             '("src/llvm-project"
                               "vendor/jemalloc-sys/jemalloc")))))
      (arguments
       ;; Rust 1.40 does not ship rustc-internal libraries by default
       ;; (see rustc-dev-split). This means that librustc_driver.so is no
       ;; longer available in lib/rustlib/$target/lib, which is the directory
       ;; included in the runpath of librustc_codegen_llvm-llvm.so.
       ;; This is detected by our validate-runpath phase as an error, but it
       ;; is harmless as the codegen backend is loaded by librustc_driver.so
       ;; itself, which must at that point have been already loaded.
       ;; As such, we skip validating the runpath for Rust 1.40.
       ;; Rust 1.41 stopped putting the codegen backend in a separate library,
       ;; which makes this workaround only necessary for this release.
       (substitute-keyword-arguments (package-arguments base-rust)
         ((#:validate-runpath? _ #f)
          #f)
         ((#:phases phases)
          `(modify-phases ,phases
             (replace 'patch-command-uid-gid-test
               (lambda _
                 (substitute* (match (find-files "src/test"
                                                 "^command-uid-gid\\.rs$")
                                ((file) file))
                   (("/bin/sh")
                    (which "sh")))))
             ;; The test got removed in commit 000fe63b6fc57b09828930cacbab20c2ee6e6d15
             ;; "Remove painful test that is not pulling its weight"
             (delete 'remove-unsupported-tests))))))))

(define-public rust-1.41
  (let ((base-rust (rust-bootstrapped-package
                    rust-1.40 "1.41.1"
                    "0ws5x0fxv57fyllsa6025h3q6j9v3m8nb3syl4x0hgkddq0kvj9q")))
    (package
      (inherit base-rust)
      (arguments
       (substitute-keyword-arguments (package-arguments base-rust)
         ((#:validate-runpath? _ #t)
          #t))))))

(define-public rust-1.42
  (rust-bootstrapped-package
   rust-1.41 "1.42.0" "0x9lxs82may6c0iln0b908cxyn1cv7h03n5cmbx3j1bas4qzks6j"))

(define-public rust-1.43
  (rust-bootstrapped-package
   rust-1.42 "1.43.0" "18akhk0wz1my6y9vhardriy2ysc482z0fnjdcgs9gy59kmnarxkm"))

(define-public rust-1.44
  (let ((base-rust (rust-bootstrapped-package
                    rust-1.43 "1.44.1"
                    "0ww4z2v3gxgn3zddqzwqya1gln04p91ykbrflnpdbmcd575n8bky")))
    (package
      (inherit base-rust)
      ;; Rust 1.44 gained support to use Python 3 for testing.
      (native-inputs
       (alist-replace "python" (list python-wrapper) (package-native-inputs base-rust)))
      (arguments (substitute-keyword-arguments (package-arguments base-rust)
                   ((#:phases phases)
                    `(modify-phases ,phases
                       (add-after 'configure 'use-python3
                         (lambda _
                           (substitute* "config.toml"
                             (("/bin/python2")
                              "/bin/python")))))))))))

(define-public rust-1.45
  (let ((base-rust (rust-bootstrapped-package
                    rust-1.44 "1.45.2"
                    "0273a1g3f59plyi1n0azf21qjzwml1yqdnj5z472crz37qggr8xp")))
    (package
      (inherit base-rust)
      (inputs
       (alist-replace "llvm" (list llvm-10) (package-inputs base-rust)))
      (arguments
       (substitute-keyword-arguments (package-arguments base-rust)
         ((#:phases phases)
          `(modify-phases ,phases
             (add-after 'unpack 'set-linker-locale-to-utf8
               (lambda _
                 (substitute* (find-files "." "^linker.rs$")
                   (("linker.env\\(\"LC_ALL\", \"C\"\\);")
                    "linker.env(\"LC_ALL\", \"en_US.UTF-8\");"))))
             ;; These tests make sure that the parser behaves properly when
             ;; a source file starts with a shebang. Unfortunately,
             ;; the patch-shebangs phase changes the meaning of these edge-cases.
             ;; We skip the test since it's drastically unlikely Guix's packaging
             ;; will introduce a bug here.
             (add-after 'patch-tests 'skip-shebang-tests
               (lambda _
                 (with-directory-excursion "src/test/ui/parser/shebang"
                   (delete-file "shebang-doc-comment.rs")
                   (delete-file "sneaky-attrib.rs"))))
             ;; This test case synchronizes itself by starting a localhost TCP
             ;; server. This doesn't work as networking is not available.
             (add-after 'patch-tests 'skip-networking-test
               (lambda _
                 (substitute* "src/tools/cargo/tests/testsuite/freshness.rs"
                   (("fn linking_interrupted" all)
                    (string-append "#[ignore] " all))))))))))))

(define-public rust-1.46
  (let ((base-rust (rust-bootstrapped-package
                    rust-1.45 "1.46.0"
                    "0a17jby2pd050s24cy4dfc0gzvgcl585v3vvyfilniyvjrqknsid")))
    (package
      (inherit base-rust)
      (outputs (cons "rustfmt" (package-outputs base-rust)))
      (arguments
       (substitute-keyword-arguments (package-arguments base-rust)
         ((#:phases phases)
          `(modify-phases ,phases
             (replace 'build
               ;; Phase overridden to also build rustfmt.
               (lambda* (#:key parallel-build? #:allow-other-keys)
                 (let ((job-spec (string-append
                                  "-j" (if parallel-build?
                                           (number->string (parallel-job-count))
                                           "1"))))
                   (invoke "./x.py" job-spec "build")
                   (invoke "./x.py" job-spec "build" "src/tools/cargo")
                   (invoke "./x.py" job-spec "build" "src/tools/rustfmt"))))
             (replace 'check
               ;; Phase overridden to also test rustfmt.
               (lambda* (#:key tests? parallel-build? #:allow-other-keys)
                 (when tests?
                   (let ((job-spec (string-append
                                    "-j" (if parallel-build?
                                             (number->string (parallel-job-count))
                                             "1"))))
                     (invoke "./x.py" job-spec "test" "-vv")
                     (invoke "./x.py" job-spec "test" "src/tools/cargo")
                     (invoke "./x.py" job-spec "test" "src/tools/rustfmt")))))
             (replace 'install
               ;; Phase overridden to also install rustfmt.
               (lambda* (#:key outputs #:allow-other-keys)
                 (invoke "./x.py" "install")
                 (substitute* "config.toml"
                   ;; Adjust the prefix to the 'cargo' output.
                   (("prefix = \"[^\"]*\"")
                    (format #f "prefix = ~s" (assoc-ref outputs "cargo"))))
                 (invoke "./x.py" "install" "cargo")
                 (substitute* "config.toml"
                   ;; Adjust the prefix to the 'rustfmt' output.
                   (("prefix = \"[^\"]*\"")
                    (format #f "prefix = ~s" (assoc-ref outputs "rustfmt"))))
                 (invoke "./x.py" "install" "rustfmt"))))))))))

(define-public rust-1.47
  (let ((base-rust (rust-bootstrapped-package
                    rust-1.46 "1.47.0"
                    "07fqd2vp7cf1ka3hr207dnnz93ymxml4935vp74g4is79h3dz19i")))
    (package
      (inherit base-rust)
      (inputs
       (alist-replace "llvm" (list llvm-11) (package-inputs base-rust)))
      (arguments
       (substitute-keyword-arguments (package-arguments base-rust)
         ((#:phases phases)
          `(modify-phases ,phases
             ;; The source code got rearranged: libstd is now in the newly created library folder.
             (replace 'patch-tests
               (lambda* (#:key inputs #:allow-other-keys)
                 (let ((bash (assoc-ref inputs "bash")))
                   (substitute* "library/std/src/process.rs"
                     (("\"/bin/sh\"") (string-append "\"" bash "/bin/sh\"")))
                   ;; <https://lists.gnu.org/archive/html/guix-devel/2017-06/msg00222.html>
                   (substitute* "library/std/src/sys/unix/process/process_common.rs"
                     (("fn test_process_mask")
                      "#[allow(unused_attributes)]
    #[ignore]
    fn test_process_mask"))))))))))))

(define-public rust-1.48
  (let ((base-rust (rust-bootstrapped-package
                    rust-1.47 "1.48.0"
                    "0fz4gbb5hp5qalrl9lcl8yw4kk7ai7wx511jb28nypbxninkwxhf")))
    (package
      (inherit base-rust)
      (arguments
       (substitute-keyword-arguments (package-arguments base-rust)
         ((#:phases phases)
          `(modify-phases ,phases
             ;; Some tests got split out into separate files.
             (replace 'patch-tests
               (lambda* (#:key inputs #:allow-other-keys)
                 (let ((bash (assoc-ref inputs "bash")))
                   (substitute* "library/std/src/process/tests.rs"
                     (("\"/bin/sh\"")
                      (string-append "\"" bash "/bin/sh\"")))
                   (substitute* "library/std/src/sys/unix/process/process_common/tests.rs"
                     (("fn test_process_mask")
                      "#[allow(unused_attributes)]
    #[ignore]
    fn test_process_mask"))))))))))))

(define-public rust-1.49
  (rust-bootstrapped-package
   rust-1.48 "1.49.0" "0yf7kll517398dgqsr7m3gldzj0iwsp3ggzxrayckpqzvylfy2mm"))

(define-public rust rust-1.49)