mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
flake: remove getHelpers
function
This commit is contained in:
parent
1b7efacdf4
commit
8b9ba44195
3 changed files with 9 additions and 14 deletions
|
@ -1,4 +1,6 @@
|
|||
{ getHelpers, pkgs }:
|
||||
{
|
||||
pkgs ? import <nixpkgs> { config.enableUnfree = true; },
|
||||
}:
|
||||
let
|
||||
# Extend nixpkg's lib, so that we can handle recursive leaf types such as `either`
|
||||
lib = pkgs.lib.extend (
|
||||
|
@ -32,7 +34,10 @@ let
|
|||
inherit lib;
|
||||
};
|
||||
|
||||
helpers = getHelpers pkgsDoc false;
|
||||
helpers = import ../lib/helpers.nix {
|
||||
inherit lib;
|
||||
pkgs = pkgsDoc;
|
||||
};
|
||||
|
||||
nixvimPath = toString ./..;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue