-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
35 lines (30 loc) · 889 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
outputs = { self, nixpkgs }:
let
supportedSystems = [ "x86_64-linux" "x86_64-darwin" ];
forAllSystems = f: nixpkgs.lib.genAttrs supportedSystems (system: f system);
nixpkgsFor = forAllSystems (system: import nixpkgs {
inherit system;
overlays = [ self.overlays.default ];
});
in
{
packages = forAllSystems
(system:
{
default = nixpkgsFor.${system}.vimPlugins.fugitive-difftool-nvim;
});
overlays.default = final: prev:
{
vimPlugins = prev.vimPlugins // {
fugitive-difftool-nvim =
prev.vimUtils.buildVimPlugin {
pname = "fugitive-difftool-nvim";
version = "0.0.1";
src = ./.;
};
};
};
};
}