From aed41597ec60675c662e3fda6dadf89fc2695724 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sat, 28 Oct 2023 16:46:57 +0300 Subject: gnu: zoxide: Remove old rust version workaround. * gnu/packages/rust-apss.scm (zoxide)[arguments]: Remove custom phases. Change-Id: I11ee4cc8376c7b825359816dea4053dff18531a8 --- gnu/packages/rust-apps.scm | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index 49223d1c8c..3309c0360f 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -2446,26 +2446,7 @@ It will then write @code{fixup!} commits for each of those changes.") `(("rust-assert-cmd" ,rust-assert-cmd-2) ("rust-rstest" ,rust-rstest-0.15) ("rust-rstest-reuse" ,rust-rstest-reuse-0.4) - ("rust-tempfile" ,rust-tempfile-3)) - #:phases - #~(modify-phases %standard-phases - (add-after 'unpack 'use-older-rust - (lambda _ - (setenv "RUSTC_BOOTSTRAP" "1") - (substitute* "Cargo.toml" - (("^rust-version = .*$") - (string-append - "rust-version = \"" - #$(package-version rust) - "\"\n"))) - (substitute* "src/main.rs" - (("#!\\[allow\\(clippy::single_component_path_imports)]") - "#![feature(total_cmp)]")) - (substitute* "src/cmd/query.rs" - (("let handle = &mut io::stdout\\()\\.lock\\();") - "\ -let _stdout = io::stdout(); -let handle = &mut _stdout.lock();"))))))) + ("rust-tempfile" ,rust-tempfile-3)))) (home-page "https://github.com/ajeetdsouza/zoxide/") (synopsis "Fast way to navigate your file system") (description -- cgit v1.2.3 ut type='submit' value='search'/>
path: root/.gitignore
AgeCommit message (Expand)Author
2021-05-10.gitignore: Ignore .mo files....* .gitignore: Ignore files matching the *.mo pattern. Maxim Cournoyer
2021-05-05.gitignore: Ignore .tarball-ignore....This file can be useful to fix a version string when experimenting with 'make release'. * .gitignore: Add a pattern to ignore .tarball-version. Maxim Cournoyer
2021-04-23.gitignore: Ignore release artifacts....Not ignoring these in the tree leads to the next generated version (.version) being suffixed with '-dirty', which confuses things. * .gitignore [/guix-*]: New pattern. [/doc/stamp-[0-9]]: Adjust to ... [/doc/stamp-*]: ... this. [/release-*]: New pattern. Maxim Cournoyer
2021-04-23.gitignore: Ignore generated .pot files....These files are automatically-extracted templates rather than source, hence shouldn't be checked in. * .gitignore: Add a glob pattern to ignore .pot files. Maxim Cournoyer