efmls-configs: Use upstream tool definitions (#692)

This commit is contained in:
traxys 2023-11-06 23:07:55 +01:00 committed by GitHub
parent 9cf2c342a2
commit 6b93c8fa6d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 143 deletions

View file

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