diff options
author | David Craven <david@craven.ch> | 2016-12-29 16:28:47 +0100 |
---|---|---|
committer | David Craven <david@craven.ch> | 2017-01-04 11:29:15 +0100 |
commit | 3b7ccbe94c3e15a04f1809c5acc894799426235e (patch) | |
tree | ba056211317381c8d1d54097167fd5a2e5367ddf /guix/build-system | |
parent | b5a09649dbe441bd2959a386f685105b90160ef9 (diff) |
build-system: cargo: Use correct cargo.
* gnu/packages/rust.scm (cargo-bootstrap): Make private.
* guix/build-system/cargo.scm (default-cargo): Use cargo.
Diffstat (limited to 'guix/build-system')
-rw-r--r-- | guix/build-system/cargo.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/guix/build-system/cargo.scm b/guix/build-system/cargo.scm index ffc0afda3b..3582f0e328 100644 --- a/guix/build-system/cargo.scm +++ b/guix/build-system/cargo.scm @@ -46,8 +46,7 @@ to NAME and VERSION." "Return the default Cargo package." ;; Lazily resolve the binding to avoid a circular dependency. (let ((rust (resolve-interface '(gnu packages rust)))) - ;; FIXME: Package cargo and replace cargo-bootstrap with cargo. - (module-ref rust 'cargo-bootstrap))) + (module-ref rust 'cargo))) (define (default-rustc) "Return the default Rustc package." |