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:
Robin Gloster 2015-09-24 08:58:13 +00:00
parent 2d3537fbf2
commit 4ed66c9f02

View file

@ -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; {