2
0
Fork 0
genodepkgs/default.nix

24 lines
408 B
Nix

{ nixpkgs ? import <nixpkgs> }:
with builtins;
let
nixpkgs' = nixpkgs {
config.allowUnsupportedSystem = true;
crossSystem = {
isx86_64 = true;
isGenode = true;
imports = [ ./platform.nix ];
};
overlays = [ (import ./overlay) ];
};
in rec {
nixpkgs = nixpkgs';
dhall = import ./dhall { inherit nixpkgs; };
upstream = import ./upstream { inherit nixpkgs; };
}