mold: add trivial updater

This commit is contained in:
Sergei Trofimovich 2022-01-27 08:45:38 +00:00
parent bf967e3cd0
commit a1cf620871

View File

@ -7,6 +7,7 @@
, xxHash
, zlib
, openssl
, nix-update-script
}:
stdenv.mkDerivation rec {
@ -29,6 +30,12 @@ stdenv.mkDerivation rec {
LTO = 1;
makeFlags = [ "PREFIX=${placeholder "out"}" ];
passthru = {
updateScript = nix-update-script {
attrPath = pname;
};
};
meta = with lib; {
description = "A high performance drop-in replacement for existing unix linkers";
homepage = "https://github.com/rui314/mold";