forked from DGNum/liminix
allow building mips (bigendian) without setting env vars
This commit is contained in:
parent
e6a173f71c
commit
64b9bad891
1 changed files with 4 additions and 1 deletions
|
@ -6,7 +6,10 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
overlay = import ./overlay.nix;
|
overlay = import ./overlay.nix;
|
||||||
nixpkgs = import <nixpkgs> (device.system // {overlays = [overlay device.overlay]; });
|
nixpkgs = import <nixpkgs> (device.system // {
|
||||||
|
overlays = [overlay device.overlay];
|
||||||
|
config = {allowUnsupportedSystem = true; };
|
||||||
|
});
|
||||||
inherit (nixpkgs) callPackage writeText liminix fetchFromGitHub;
|
inherit (nixpkgs) callPackage writeText liminix fetchFromGitHub;
|
||||||
inherit (nixpkgs.lib) concatStringsSep;
|
inherit (nixpkgs.lib) concatStringsSep;
|
||||||
config = (import ./merge-modules.nix) [
|
config = (import ./merge-modules.nix) [
|
||||||
|
|
Loading…
Reference in a new issue