diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 68bbbbe..d59e77b 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -42,10 +42,6 @@ jobs: run: | nix build '.#lexical' attic push ${{ secrets.ATTIC_CACHE }} $(nix-store -qR --include-outputs $(nix-store -qd ./result) | grep -v '\.drv$') - - name: Build neovim-nightly - run: | - nix build '.#neovim-nightly' - attic push ${{ secrets.ATTIC_CACHE }} $(nix-store -qR --include-outputs $(nix-store -qd ./result) | grep -v '\.drv$') - name: Build q run: | nix build '.#q' @@ -86,10 +82,6 @@ jobs: run: | nix build '.#lexical' attic push ${{ secrets.ATTIC_CACHE }} $(nix-store -qR --include-outputs $(nix-store -qd ./result) | grep -v '\.drv$') - - name: Build neovim-nightly - run: | - nix build '.#neovim-nightly' - attic push ${{ secrets.ATTIC_CACHE }} $(nix-store -qR --include-outputs $(nix-store -qd ./result) | grep -v '\.drv$') - name: Build q run: | nix build '.#q' diff --git a/flake.nix b/flake.nix index b1278ed..87fc21a 100644 --- a/flake.nix +++ b/flake.nix @@ -4,11 +4,6 @@ nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable-small"; flake-parts.url = "github:hercules-ci/flake-parts"; - - neovim-flake = { - url = "github:neovim/neovim?dir=contrib"; - inputs.nixpkgs.follows = "nixpkgs"; - }; }; outputs = inputs@{ flake-parts, ... }: @@ -43,7 +38,6 @@ fennel-ls = callPackage ./packages/fennel-ls.nix { }; headscale-ui = callPackage ./packages/headscale-ui.nix { }; lexical = callPackage ./packages/lexical.nix { }; - neovim-nightly = callPackage ./packages/neovim-nightly.nix { inherit (inputs'.neovim-flake.packages) neovim; }; q = callPackage ./packages/q.nix { }; redlib = callPackage ./packages/redlib.nix { }; rexit = callPackage ./packages/rexit.nix { }; diff --git a/packages/neovim-nightly.nix b/packages/neovim-nightly.nix deleted file mode 100644 index a40f59b..0000000 --- a/packages/neovim-nightly.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ neovim, pkgs, lib, ... }: - -let - latest-libvterm = pkgs.libvterm-neovim; -in -neovim.override { libvterm-neovim = latest-libvterm; }