mold: 2.1.0 -> 2.2.0

This commit is contained in:
Pavel Sobolev 2023-09-24 15:51:04 +03:00
parent 975f709a08
commit 68e0cf87a3
No known key found for this signature in database
2 changed files with 5 additions and 5 deletions

View File

@ -6,7 +6,6 @@
, cmake
, mimalloc
, ninja
, openssl
, zlib
, buildPackages
@ -20,13 +19,13 @@
stdenv.mkDerivation rec {
pname = "mold";
version = "2.1.0";
version = "2.2.0";
src = fetchFromGitHub {
owner = "rui314";
repo = "mold";
rev = "v${version}";
hash = "sha256-4W6quVSkxS2I6KEy3fVyBTypD0fg4EecgeEVM0Yw58s=";
hash = "sha256-ePX80hzzIzSJdGUX96GyxYWcdbXxXyuyNQqj5RDSkKU=";
};
nativeBuildInputs = [
@ -35,7 +34,6 @@ stdenv.mkDerivation rec {
];
buildInputs = [
openssl
zlib
] ++ lib.optionals (!stdenv.isDarwin) [
mimalloc

View File

@ -19647,7 +19647,9 @@ with pkgs;
modd = callPackage ../development/tools/modd { };
mold = callPackage ../development/tools/mold { };
mold = callPackage ../development/tools/mold {
stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.llvmPackages_13.stdenv else stdenv;
};
mold-wrapped = wrapBintoolsWith {
bintools = mold;