rustfmt: fix build
rustfmt now needs to have llvm in its buildInputs since rust does not bundle it and rustfmt needs to link to it.
This commit is contained in:
parent
2d3537fbf2
commit
4ed66c9f02
1 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchgit, rustUnstable, makeWrapper }:
|
||||
{ stdenv, fetchgit, rustUnstable, makeWrapper, llvmPackages_37 }:
|
||||
|
||||
with rustUnstable;
|
||||
|
||||
|
@ -10,6 +10,8 @@ buildRustPackage rec {
|
|||
sha256 = "0q72mfj2ph2n4cd0cs4p2mpyr2ixd6ss607kjlgfinjv6klk1i3b";
|
||||
};
|
||||
|
||||
buildInputs = [ llvmPackages_37.llvm ];
|
||||
|
||||
depsSha256 = "13i9qaia1wn18lgfl69rrxw7b24bq1bpqhdck2jzxpv3wi2xshlw";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
|
Loading…
Reference in a new issue