1
0
Fork 0

Compare commits

...

2 commits

Author SHA1 Message Date
Daniel Kempkens 056a5db75e
Update deps
All checks were successful
Build / build-amd64-linux (push) Successful in 1m32s
Build / build-arm64-linux (push) Successful in 2m29s
2024-05-20 13:17:54 +02:00
Daniel Kempkens 7b0ed6acae
nvim: remove custom overlay 2024-05-20 13:15:27 +02:00
4 changed files with 3 additions and 62 deletions

View file

@ -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'

View file

@ -36,36 +36,13 @@
"type": "github"
}
},
"neovim-flake": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"dir": "contrib",
"lastModified": 1716156820,
"narHash": "sha256-1hW6OkPWWjp07rIhwEnsLwd4dqCtCLN6YreSvfy8lN4=",
"owner": "neovim",
"repo": "neovim",
"rev": "b16b287b8f36a8e25b27f3009d7fdd0d39348894",
"type": "github"
},
"original": {
"dir": "contrib",
"owner": "neovim",
"repo": "neovim",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1716127062,
"narHash": "sha256-2rk8FqB/iQV2d0vQLs684/Tj5PUHaS1sFwG7fng5vXE=",
"lastModified": 1716170507,
"narHash": "sha256-EAJWIo2uRoELjlI9+RAL/9QF4D+SSHqYLyMW4QTZLP0=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "8a2555763c48e2410054de3f52f7310ce3241ec5",
"rev": "f72f67152a44df2d2c09a578bac8e09b9390279b",
"type": "github"
},
"original": {
@ -90,24 +67,8 @@
"root": {
"inputs": {
"flake-parts": "flake-parts",
"neovim-flake": "neovim-flake",
"nixpkgs": "nixpkgs"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
}
},
"root": "root",

View file

@ -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 { };

View file

@ -1,6 +0,0 @@
{ neovim, pkgs, lib, ... }:
let
latest-libvterm = pkgs.libvterm-neovim;
in
neovim.override { libvterm-neovim = latest-libvterm; }