mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 02:33:25 +00:00
55 lines
1.4 KiB
Nix
55 lines
1.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, mimalloc
|
|
, ninja
|
|
, openssl
|
|
, zlib
|
|
, testers
|
|
, mold
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mold";
|
|
version = "1.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rui314";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-s57mXWZsj7S5O91I3tc/ecHJDbQR7amiyTxhYt7jzUM=";
|
|
};
|
|
|
|
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;
|
|
# https://github.com/NixOS/nixpkgs/pull/189712#issuecomment-1237791234
|
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
|
};
|
|
}
|