chore: update flake.lock
This commit is contained in:
parent
d6e0ad0022
commit
33ff902117
3 changed files with 9 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, lib, nixpkgs-staging, neovim-flake, ... }: let
|
{ pkgs, lib, neovim-flake, ... }: let
|
||||||
# installs a vim plugin from git with a given tag / branch
|
# installs a vim plugin from git with a given tag / branch
|
||||||
plugin = owner: repo: rev: hash: pkgs.vimUtils.buildVimPlugin {
|
plugin = owner: repo: rev: hash: pkgs.vimUtils.buildVimPlugin {
|
||||||
pname = "${lib.strings.sanitizeDerivationName repo}";
|
pname = "${lib.strings.sanitizeDerivationName repo}";
|
||||||
|
@ -32,7 +32,14 @@ in {
|
||||||
enable = true;
|
enable = true;
|
||||||
# Temp fix https://github.com/nix-community/neovim-nightly-overlay/issues/332
|
# Temp fix https://github.com/nix-community/neovim-nightly-overlay/issues/332
|
||||||
package = neovim-flake.packages.x86_64-linux.default.override {
|
package = neovim-flake.packages.x86_64-linux.default.override {
|
||||||
libvterm-neovim = nixpkgs-staging.legacyPackages.x86_64-linux.libvterm-neovim;
|
libvterm-neovim = pkgs.libvterm-neovim.overrideAttrs (prev: final: {
|
||||||
|
doCheck = false;
|
||||||
|
version = "0.3.3";
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "https://launchpad.net/libvterm/trunk/v0.3.3/+download/libvterm-0.3.3.tar.gz";
|
||||||
|
hash = "sha256-CRVvQ90hKL00fL7r5Q2aVx0yxk4M8Y0hEZeUav9yJuA=";
|
||||||
|
};
|
||||||
|
});
|
||||||
};
|
};
|
||||||
withNodeJs = true;
|
withNodeJs = true;
|
||||||
withPython3 = true;
|
withPython3 = true;
|
||||||
|
|
BIN
flake.lock
BIN
flake.lock
Binary file not shown.
BIN
flake.nix
BIN
flake.nix
Binary file not shown.
Loading…
Reference in a new issue