{ lib, stdenv , fetch , cmake , libxml2 , llvm , version }: stdenv.mkDerivation { pname = "lld"; inherit version; src = fetch "lld" "04afcfq2h7ysyqxxhyhb7ig4p0vdw7mi63kh8mffl74j0rc781p7"; nativeBuildInputs = [ cmake ]; buildInputs = [ llvm libxml2 ]; outputs = [ "out" "dev" ]; postInstall = '' moveToOutput include "$dev" moveToOutput lib "$dev" ''; meta = { description = "The LLVM Linker"; homepage = "https://lld.llvm.org/"; license = lib.licenses.ncsa; platforms = lib.platforms.all; }; }