mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
rdedup: use default clang version
This commit is contained in:
parent
668b3e7de4
commit
2d8d2c3fb8
@ -1,5 +1,5 @@
|
||||
{ stdenv, fetchFromGitHub, rustPlatform, pkgconfig, openssl, libsodium
|
||||
, llvmPackages, clang_39, lzma
|
||||
, llvmPackages, clang, lzma
|
||||
, Security }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
@ -19,7 +19,7 @@ rustPlatform.buildRustPackage rec {
|
||||
./v3.1.1-fix-Cargo.lock.patch
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig llvmPackages.libclang clang_39 ];
|
||||
nativeBuildInputs = [ pkgconfig llvmPackages.libclang clang ];
|
||||
buildInputs = [ openssl libsodium lzma ]
|
||||
++ (stdenv.lib.optional stdenv.isDarwin Security);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user