2022-12-29T09:22:27 mold 0 -> 1 2022-12-29T09:22:29 attrpath: mold 2022-12-29T09:22:29 Checking auto update branch... 2022-12-29T09:22:30 No auto update branch exists 2022-12-29T09:22:30 There might already be an open PR for this update: - mold: wrap with ld-wrapper URL "https://api.github.com/repos/NixOS/nixpkgs/issues/172452" - python310Packages.aiosqlite: 0.17.0 -> 0.18.0 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/208006" - python310Packages.zeroconf: 0.39.4 -> 0.44.0 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/206693" - python310Packages.starlette: 0.20.4 -> 0.21.0 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/193923" - stdenv: proof of concept for single make jobserver across multiple nix builds URL "https://api.github.com/repos/NixOS/nixpkgs/issues/143820" 2022-12-29T11:55:06 mold 1.7.1 -> 1.8.0 https://repology.org/metapackage/mold/versions 2022-12-29T11:55:09 attrpath: mold 2022-12-29T11:55:09 Checking auto update branch... 2022-12-29T11:55:09 No auto update branch exists 2022-12-29T11:55:09 Old version 1.7.1" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , cmake , mimalloc , ninja , openssl , zlib , testers , mold }: stdenv.mkDerivation rec { pname = "mold"; version = "1.8.0"; src = fetchFromGitHub { owner = "rui314"; repo = pname; rev = "v${version}"; hash = "sha256-VykBOXeU3I6ZSmRIlngLdoLF4V2nb5QW/f8tr9Wn9o8="; }; nativeBuildInputs = [ cmake ninja ]; buildInputs = [ openssl zlib ] ++ lib.optionals (!stdenv.isDarwin) [ mimalloc ]; postPatch = '' sed -i CMakeLists.txt -e '/.*set(DEST\ .*/d' ''; cmakeFlags = [ "-DMOLD_USE_SYSTEM_MIMALLOC:BOOL=ON" ]; NIX_CFLAGS_COMPILE = lib.optionals stdenv.isDarwin [ "-faligned-allocation" ]; passthru.tests.version = testers.testVersion { package = mold; }; meta = with lib; { description = "A faster drop-in replacement for existing Unix linkers"; longDescription = '' mold is a faster drop-in replacement for existing Unix linkers. It is several times faster than the LLVM lld linker. mold is designed to increase developer productivity by reducing build time, especially in rapid debug-edit-rebuild cycles. ''; homepage = "https://github.com/rui314/mold"; license = licenses.agpl3Plus; maintainers = with maintainers; [ azahi nitsky ]; platforms = platforms.unix; }; }