Build Genode stdenv

This commit is contained in:
Ehmry - 2019-09-01 16:43:59 +02:00
parent 7f8e7923a6
commit ca13c09335
1 changed files with 7 additions and 9 deletions

View File

@ -1,13 +1,11 @@
{ genodepkgs ? builtins.fetchGit ./., nixpkgs ? builtins.fetchGit {
url = "https://github.com/ehmry/nixpkgs.git";
ref = "genode";
} }:
{ genodepkgs ? builtins.fetchGit ./. }:
{
build.x86_64 = let
pkgs = import ./default.nix {
inherit nixpkgs;
system = { config = "x86_64-unknown-genode"; };
};
in { inherit (pkgs) upstream ports libretro; };
pkgs =
import ./default.nix { system = { config = "x86_64-unknown-genode"; }; };
in {
inherit (pkgs) upstream ports libretro;
nixpkgs = { inherit (pkgs.nixpkgs) stdenv; };
};
}