2
0
Fork 0
genodepkgs/default.nix

24 lines
408 B
Nix
Raw Normal View History

2019-09-23 20:34:54 +02:00
{ nixpkgs ? import <nixpkgs> }:
2019-07-30 12:48:01 +02:00
with builtins;
let
2019-09-13 12:08:40 +02:00
nixpkgs' = nixpkgs {
config.allowUnsupportedSystem = true;
crossSystem = {
isx86_64 = true;
isGenode = true;
imports = [ ./platform.nix ];
2019-07-30 12:48:01 +02:00
};
2019-09-13 12:08:40 +02:00
overlays = [ (import ./overlay) ];
};
2019-07-30 12:48:01 +02:00
2019-09-13 12:08:40 +02:00
in rec {
2019-07-30 12:48:01 +02:00
nixpkgs = nixpkgs';
dhall = import ./dhall { inherit nixpkgs; };
2019-09-13 12:08:40 +02:00
upstream = import ./upstream { inherit nixpkgs; };
2019-07-30 12:48:01 +02:00
}