Compare commits

...

2 commits

Author SHA1 Message Date
Bruno BELANYI 7010ba25f4 flake: only use subset of systems
All checks were successful
continuous-integration/drone/push Build is passing
Turns out pre-commit pulls dotnet in its closure, which is not supported
on i686...
2022-04-12 10:45:04 +02:00
Bruno BELANYI 5c6d0cd032 overlays: remove vim-plugins-overrides 2022-04-12 10:45:04 +02:00
3 changed files with 11 additions and 21 deletions

View file

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

View file

@ -1,6 +1,4 @@
{
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

@ -1,17 +0,0 @@
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=";
};
});
});
}