From e99329eb02194e2750078cce0bd4c92726149088 Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Mon, 22 Aug 2022 16:52:52 +0200 Subject: [PATCH] elan: overwrite llvm-ar with stdenv ar --- .../logic/elan/0001-dynamically-patchelf-binaries.patch | 7 ++++++- pkgs/applications/science/logic/elan/default.nix | 2 ++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/science/logic/elan/0001-dynamically-patchelf-binaries.patch b/pkgs/applications/science/logic/elan/0001-dynamically-patchelf-binaries.patch index 768be10b6df3..74da9d854f34 100644 --- a/pkgs/applications/science/logic/elan/0001-dynamically-patchelf-binaries.patch +++ b/pkgs/applications/science/logic/elan/0001-dynamically-patchelf-binaries.patch @@ -2,7 +2,7 @@ diff --git a/src/elan-dist/src/component/package.rs b/src/elan-dist/src/componen index c51e76d..ae8159e 100644 --- a/src/elan-dist/src/component/package.rs +++ b/src/elan-dist/src/component/package.rs -@@ -56,6 +56,30 @@ fn unpack_without_first_dir(archive: &mut tar::Archive, path: &Path) +@@ -56,6 +56,35 @@ fn unpack_without_first_dir(archive: &mut tar::Archive, path: &Path) entry .unpack(&full_path) .chain_err(|| ErrorKind::ExtractingPackage)?; @@ -30,6 +30,11 @@ index c51e76d..ae8159e 100644 +LEAN_CC="${{LEAN_CC:-@cc@}}" exec -a "$0" {} "$@" -L {}/lib # use bundled libraries, but not bundled compiler that doesn't know about NIX_LDFLAGS +"#, new_path.to_str().unwrap(), dest_path.parent().unwrap().parent().unwrap().to_str().unwrap()))?; + ::std::fs::set_permissions(dest_path, ::std::fs::Permissions::from_mode(0o755))?; ++ } ++ ++ if dest_path.file_name() == Some(::std::ffi::OsStr::new("llvm-ar")) { ++ ::std::fs::remove_file(dest_path)?; ++ ::std::os::unix::fs::symlink("@ar@", dest_path)?; } Ok(()) diff --git a/pkgs/applications/science/logic/elan/default.nix b/pkgs/applications/science/logic/elan/default.nix index 1c16de8ad951..b77d06e50091 100644 --- a/pkgs/applications/science/logic/elan/default.nix +++ b/pkgs/applications/science/logic/elan/default.nix @@ -28,6 +28,7 @@ rustPlatform.buildRustPackage rec { (runCommand "0001-dynamically-patchelf-binaries.patch" { CC = stdenv.cc; cc = "${stdenv.cc}/bin/cc"; + ar = "${stdenv.cc}/bin/ar"; patchelf = patchelf; shell = runtimeShell; } '' @@ -36,6 +37,7 @@ rustPlatform.buildRustPackage rec { --subst-var patchelf \ --subst-var dynamicLinker \ --subst-var cc \ + --subst-var ar \ --subst-var shell '') ];