sigil/release.nix

14 lines
333 B
Nix
Raw Normal View History

2019-09-01 15:27:43 +02:00
{ genodepkgs ? builtins.fetchGit ./., nixpkgs ? builtins.fetchGit {
url = "https://github.com/ehmry/nixpkgs.git";
ref = "genode";
} }:
2019-07-30 12:48:01 +02:00
{
2019-09-01 15:27:43 +02:00
build.x86_64 = let
pkgs = import ./default.nix {
inherit nixpkgs;
system = { config = "x86_64-unknown-genode"; };
};
in { inherit (pkgs) upstream ports libretro; };
2019-07-30 12:48:01 +02:00
}