Skip to content

Commit

Permalink
Merge pull request #123756 from fortuneteller2k/zls
Browse files Browse the repository at this point in the history
zls: build for baseline arch, cleanup
  • Loading branch information
lukegb authored May 23, 2021
2 parents 5d261cb + c2b1797 commit 525cf3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/tools/zls/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ stdenv.mkDerivation rec {
'';

installPhase = ''
zig build -Drelease-safe --prefix $out install
zig build -Drelease-safe -Dtarget=${stdenv.hostPlatform.parsed.cpu.name}-native --prefix $out install
'';

meta = with lib; {
description = "Zig LSP implementation + Zig Language Server";
changelog = "https://github.com/zigtools/zls/releases/tag/${version}";
homepage = "https://github.com/zigtools/zls";
license = [ licenses.mit ];
license = licenses.mit;
maintainers = with maintainers; [ fortuneteller2k ];
};
}

0 comments on commit 525cf3d

Please sign in to comment.