| eb:
(
{ config, pkgs, ... }:
{
options.nixpkgsNative.pkgs = lib.mkOption {
type = lib.types.pkgs;
default = null;
description = "Native nixpkgs for the system being cross-compiled to get native packages to reduce build amounts";
};
config.nixpkgsNative.pkgs = import pkgs.path {
localSystem = config.nixpkgs.crossSystem;
inherit (config.nixpkgs) crossSystem config;
};
}
)
config.nixpkgsNative.pkgs.mpv-unwrapped
|