zld: init at 1.3.3

This commit is contained in:
Gabriel Lievano 2022-03-17 17:59:05 -07:00 committed by Yt
parent a62722a794
commit 4e630bb272
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, lib, fetchzip }:
stdenv.mkDerivation rec {
pname = "zld";
version = "1.3.3";
src = fetchzip {
url = "https://github.com/michaeleisel/zld/releases/download/${version}/zld.zip";
sha256 = "0qb4l7a4vhpnzkgzhw0jivz40jr5gdhqfyynhbkhn7ryh5s52d1p";
};
installPhase = ''
mkdir -p $out/bin
cp zld $out/bin/
'';
meta = with lib; {
description = "A faster version of Apple's linker";
homepage = "https://github.com/michaeleisel/zld";
license = licenses.mit;
maintainers = [ maintainers.rgnns ];
platforms = platforms.darwin;
hydraPlatforms = [];
};
}

View file

@ -11565,6 +11565,8 @@ with pkgs;
zimwriterfs = callPackage ../tools/text/zimwriterfs { };
zld = callPackage ../development/tools/zld { };
par = callPackage ../tools/text/par { };
zip = callPackage ../tools/archivers/zip { };