refactor(nix): use pkgs.callPackage insted of import

This commit is contained in:
Guz
2025-12-08 21:39:26 -03:00
parent 845575ef33
commit 2fb6af9ea2

View File

@@ -38,8 +38,7 @@
stdenv,
...
}: {
neovim = import ./package.nix {
inherit pkgs lib;
neovim = pkgs.callPackage ./package.nix {
mdfmt = self.packages.${stdenv.hostPlatform.system}.mdfmt;
};
mdfmt = pkgs.buildGoModule {