1
0
Fork 0

Compare commits

..

No commits in common. "056a5db75e3dc960e7e282ea1c26cb3f1851811a" and "d9b5729e0e7ffe02ecf967a4b8d83bfabbde4311" have entirely different histories.

4 changed files with 62 additions and 3 deletions

View file

@ -42,6 +42,10 @@ 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'
@ -82,6 +86,10 @@ 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,13 +36,36 @@
"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": 1716170507,
"narHash": "sha256-EAJWIo2uRoELjlI9+RAL/9QF4D+SSHqYLyMW4QTZLP0=",
"lastModified": 1716127062,
"narHash": "sha256-2rk8FqB/iQV2d0vQLs684/Tj5PUHaS1sFwG7fng5vXE=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "f72f67152a44df2d2c09a578bac8e09b9390279b",
"rev": "8a2555763c48e2410054de3f52f7310ce3241ec5",
"type": "github"
},
"original": {
@ -67,8 +90,24 @@
"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,6 +4,11 @@
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, ... }:
@ -38,6 +43,7 @@
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

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