mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-30 15:44:41 +02:00
wrappers: use system from stdenv.hostPlatform
`pgs.system` is a flaky alias and it is more reliable to directly use `pkgs.stdenv.hostPlatform.system`
This commit is contained in:
parent
c062b976ef
commit
662a0e1bdb
5 changed files with 5 additions and 5 deletions
|
@ -52,7 +52,7 @@ let
|
|||
paths = [
|
||||
config.finalPackage
|
||||
config.printInitPackage
|
||||
] ++ pkgs.lib.optional config.enableMan self.packages.${pkgs.system}.man-docs;
|
||||
] ++ pkgs.lib.optional config.enableMan self.packages.${pkgs.stdenv.hostPlatform.system}.man-docs;
|
||||
meta.mainProgram = "nvim";
|
||||
})
|
||||
// {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue