diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-12-11 10:48:48 +0900 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2025-01-06 12:14:58 +0200 |
commit | 283ecf51fc46d6164f3f3b998e8d4ff7b9ca86d2 (patch) | |
tree | 9aeec06abd95867f2c7daea0bbdfc5ea185a7b0a | |
parent | d3185f33cd1e96a68856f36be94bcda38dc2d51c (diff) |
gnu: rust-1.55: Use minimal variant of python-wrapper.
This should help reduce the number of times rebuilding the rust bootstrap
chain from scratch is needed when updating packages.
* gnu/packages/rust.scm (rust-1.55) [native-inputs]: Replace python-wrapper
with python-minimal-wrapper.
Change-Id: I92c88192c75353b22f374d5c301776d2bcc6b1db
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/rust.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm index 7d8d188b4a..d5da35b5af 100644 --- a/gnu/packages/rust.scm +++ b/gnu/packages/rust.scm @@ -536,7 +536,7 @@ ar = \"" binutils "/bin/ar" "\" suffix (,(string-append libc "/lib")))))))))) (native-inputs `(("pkg-config" ,pkg-config) - ("python" ,python-wrapper) + ("python" ,python-minimal-wrapper) ("rustc-bootstrap" ,rust-bootstrap) ("cargo-bootstrap" ,rust-bootstrap "cargo"))) (inputs |