mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
just: fix aarch64 build
This commit is contained in:
parent
bed52081e5
commit
2ec9af0f0e
|
@ -16,6 +16,12 @@ rustPlatform.buildRustPackage rec {
|
|||
nativeBuildInputs = [ installShellFiles ];
|
||||
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
|
||||
|
||||
postPatch = ''
|
||||
# this hard codes the compiler, which breaks the aarch64 in particular
|
||||
# we rather want to set the compiler ourself
|
||||
rm .cargo/config
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
installManPage man/just.1
|
||||
|
||||
|
|
Loading…
Reference in a new issue