Unverified Commit 68e0cf87 authored by Pavel Sobolev's avatar Pavel Sobolev
Browse files

mold: 2.1.0 -> 2.2.0

parent 975f709a
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -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
+3 −1
Original line number Diff line number Diff line
@@ -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;