nixpkgs/pkgs/development/tools/zls/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
802 B
Nix
Raw Normal View History

2021-04-23 19:38:02 +00:00
{ stdenv, lib, fetchFromGitHub, zig }:
stdenv.mkDerivation rec {
pname = "zls";
2022-07-12 07:17:19 +00:00
version = "0.9.0";
2021-04-23 19:38:02 +00:00
src = fetchFromGitHub {
owner = "zigtools";
repo = pname;
2022-07-12 07:17:19 +00:00
rev = version;
sha256 = "sha256-MVo21qNCZop/HXBqrPcosGbRY+W69KNCc1DfnH47GsI=";
2021-04-23 19:38:02 +00:00
fetchSubmodules = true;
};
nativeBuildInputs = [ zig ];
preBuild = ''
export HOME=$TMPDIR
'';
installPhase = ''
2021-06-06 06:01:19 +00:00
zig build -Drelease-safe -Dcpu=baseline --prefix $out install
2021-04-23 19:38:02 +00:00
'';
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";
2021-05-20 02:25:16 +00:00
license = licenses.mit;
2021-04-23 19:38:02 +00:00
maintainers = with maintainers; [ fortuneteller2k ];
2022-07-12 22:59:52 +00:00
platforms = platforms.unix;
2021-04-23 19:38:02 +00:00
};
}