mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
Merge pull request #120450 from fortuneteller2k/add-zls
This commit is contained in:
commit
bbffc43d56
32
pkgs/development/tools/zls/default.nix
Normal file
32
pkgs/development/tools/zls/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ stdenv, lib, fetchFromGitHub, zig }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "zls";
|
||||||
|
version = "0.1.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "zigtools";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "sha256-A4aOdmlIxBUeKyczzLxH4y1Rl9TgE1EeiKGbWY4p/00=";
|
||||||
|
fetchSubmodules = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ zig ];
|
||||||
|
|
||||||
|
preBuild = ''
|
||||||
|
export HOME=$TMPDIR
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
zig build -Drelease-safe --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 ];
|
||||||
|
maintainers = with maintainers; [ fortuneteller2k ];
|
||||||
|
};
|
||||||
|
}
|
@ -13692,6 +13692,8 @@ in
|
|||||||
|
|
||||||
ytt = callPackage ../development/tools/ytt {};
|
ytt = callPackage ../development/tools/ytt {};
|
||||||
|
|
||||||
|
zls = callPackage ../development/tools/zls { };
|
||||||
|
|
||||||
zydis = callPackage ../development/libraries/zydis { };
|
zydis = callPackage ../development/libraries/zydis { };
|
||||||
|
|
||||||
winpdb = callPackage ../development/tools/winpdb { };
|
winpdb = callPackage ../development/tools/winpdb { };
|
||||||
|
Loading…
Reference in New Issue
Block a user