3
0
Fork 0
forked from mirrors/nixpkgs

mold: passthru.updateScript = nix-update-script

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2023-07-26 16:04:26 -05:00
parent 88c693d64e
commit e604d3a8f3

View file

@ -8,6 +8,7 @@
, zlib
, testers
, mold
, nix-update-script
}:
stdenv.mkDerivation rec {
@ -49,7 +50,10 @@ stdenv.mkDerivation rec {
"-faligned-allocation"
]);
passthru.tests.version = testers.testVersion { package = mold; };
passthru = {
updateScript = nix-update-script { };
tests.version = testers.testVersion { package = mold; };
};
meta = with lib; {
description = "A faster drop-in replacement for existing Unix linkers";