Compare commits

..

No commits in common. "7010ba25f48103f0779dd9b9fb90387818dc70fc" and "c936d2e043f28238ca64607cab8e048194735df7" have entirely different histories.

3 changed files with 21 additions and 11 deletions

View file

@ -65,16 +65,7 @@
, pre-commit-hooks
}:
let
inherit (futils.lib) eachSystem system;
mySystems = [
system.aarch64-darwin
system.aarch64-linux
system.x86_64-darwin
system.x86_64-linux
];
eachMySystem = eachSystem mySystems;
inherit (futils.lib) eachDefaultSystem;
lib = nixpkgs.lib.extend (self: super: {
my = import ./lib { inherit inputs; pkgs = nixpkgs; lib = self; };
@ -109,7 +100,7 @@
};
};
in
eachMySystem
eachDefaultSystem
(system:
let
pkgs = nixpkgs.legacyPackages.${system};

View file

@ -1,4 +1,6 @@
{
null-ls-update = import ./vim-plugins-overrides;
sabnzbd-fix-missing-packages = import ./sabnzbd-fix-missing-dependencies;
transgui-fix-duplicate-status = import ./transgui-fix-duplicate-status;

View file

@ -0,0 +1,17 @@
final: prev:
let
in
{
# FIXME: update null-ls
vimPlugins = prev.vimPlugins.extend (self: super: {
null-ls-nvim = super.null-ls-nvim.overrideAttrs (old: {
version = "2022-03-11";
src = final.fetchFromGitHub {
owner = "jose-elias-alvarez";
repo = "null-ls.nvim";
rev = "1ee1da4970b3c94bed0d0250a353bff633901cd1";
sha256 = "sha256-db9d2djNUCZzxIkycUn8Kcu4TS33w55eWxUn2OzcLas=";
};
});
});
}