Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Zld 1.3.3 #164663

Merged
merged 2 commits into from
Mar 18, 2022
Merged

Zld 1.3.3 #164663

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10386,6 +10386,12 @@
githubId = 22803888;
name = "Lu Hongxu";
};
rgnns = {
email = "[email protected]";
github = "rgnns";
githubId = 811827;
name = "Gabriel Lievano";
};
rgrunbla = {
email = "[email protected]";
github = "rgrunbla";
Expand Down
24 changes: 24 additions & 0 deletions pkgs/development/tools/zld/default.nix
Original file line number Diff line number Diff line change
@@ -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 = [];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down