all repos — nixfiles @ c4b48c543909da44843a636d8b175df4f975c7c5

System and user configuration, managed by nix and home-manager

remove unused package epkgs.tabnine{-capf,}
Alan Pearce alan@alanpearce.eu
Fri, 10 May 2024 16:27:40 +0200
commit

c4b48c543909da44843a636d8b175df4f975c7c5

parent

39a0b29655eb2314db1f7914f751595742e32d2d

2 files changed, 0 insertions(+), 57 deletions(-)

jump to
M overlays/extra-packages.nixoverlays/extra-packages.nix
@@ -1,14 +1,4 @@ self: super: {
-  emacsPackagesFor = emacs: (
-    (super.emacsPackagesFor emacs).overrideScope (
-      eself: esuper:
-        esuper // {
-          tabnine-capf = super.callPackage ../packages/tabnine-capf.nix {
-            inherit eself;
-          };
-        }
-    )
-  );
   vimPlugins = super.vimPlugins.extend (final: prev: {
     coc-tabnine =
       let
D user/packages/tabnine-capf.nix
@@ -1,47 +0,0 @@-{ eself
-, fetchFromGitHub
-, emacs
-, gcc
-, lib
-, writeText
-, unstableGitUpdater
-, ...
-}:
-let
-  rev = "a55cefee20ea94747b12068a1d4b64b0decf37eb";
-in
-eself.trivialBuild {
-  ename = "tabnine-capf";
-  pname = "tabnine-capf";
-  version = "0.0.1+unstable=2023-04-23";
-
-  src = fetchFromGitHub {
-    owner = "50ways2sayhard";
-    repo = "tabnine-capf";
-    inherit rev;
-    sha256 = "14n5xklm9cpkn04crvx7mlykk48w2j2w5vcf6ipfj84dhpiyzh0j";
-  };
-
-  packageRequires = with eself; [ dash s ];
-
-  buildInputs = [ emacs gcc ];
-
-  buildPhase = ''
-    runHook preBuild
-    emacs -L . --batch --funcall batch-byte-compile *.el
-    runHook postBuild
-  '';
-
-  recipe = writeText "recipe" ''
-    (tabnine-capf :repo "50ways2sayhard/tabnine-capf" :fetcher github)
-  '';
-
-  passthru.updateScript = unstableGitUpdater { };
-
-  meta = with lib; {
-    description = "A capf version of company-tabnine";
-    homepage = "https://github.com/50ways2sayhard/tabnine-capf";
-    license = licenses.mit;
-    inherit (emacs.meta) platforms;
-  };
-}