plugin/efmls-configs: init + tests (#542)

This commit is contained in:
traxys 2023-08-27 20:49:23 +02:00 committed by GitHub
parent c4354ea9ec
commit 4cd3707e00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 630 additions and 0 deletions

View file

@ -1,5 +1,6 @@
pkgs: rec {
rust-analyzer-config = pkgs.callPackage ./rust-analyzer {};
efmls-configs-tools = pkgs.callPackage ./efmls-configs {};
autogenerated-configs = pkgs.callPackage ({stdenv}:
stdenv.mkDerivation {
pname = "autogenerated-configs";
@ -11,6 +12,7 @@ pkgs: rec {
installPhase = ''
mkdir -p $out
cp ${rust-analyzer-config}/share/* $out
cp ${efmls-configs-tools}/share/* $out
'';
}) {};
}