2
0
Fork 0
genodepkgs/default.nix

37 lines
952 B
Nix
Raw Normal View History

2019-09-27 12:38:35 +02:00
# SPDX-FileCopyrightText: Emery Hemingway
#
# SPDX-License-Identifier: LicenseRef-Hippocratic-1.1
2019-07-30 12:48:01 +02:00
let
pkgOverlay = self: super:
# Overlay of locally defined packages
2019-09-24 12:45:57 +02:00
with self; {
depot = callPackage ./depot { };
2019-09-24 12:45:57 +02:00
dhall = callPackage ./dhall { };
genode = callPackage ./upstream { };
nova = callPackage ./NOVA { };
2019-07-30 12:48:01 +02:00
};
toolchainOverlay = import ./toolchain-overlay;
# Overlay of toolchain patches
2019-07-30 12:48:01 +02:00
nixpkgs' = builtins.fetchGit {
# A branch of Nixpkgs with a custom "crossSystem" mechanism
url = "https://github.com/ehmry/nixpkgs.git";
ref = "hybrid";
rev = "3985d04b2cfe144beaf0fde58b2904763004197f";
};
2019-07-30 12:48:01 +02:00
2019-09-24 12:45:57 +02:00
in { nixpkgs ? nixpkgs' }:
2019-07-30 12:48:01 +02:00
2019-09-24 12:45:57 +02:00
import nixpkgs {
# Evaluate an overlayed Nixpkgs for a Genode target
config.allowUnsupportedSystem = true;
crossSystem = {
isx86_64 = true;
isGenode = true;
imports = [ ./platform.nix ];
};
overlays = [ toolchainOverlay pkgOverlay ];
2019-07-30 12:48:01 +02:00
}