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