From 2f430422bbeb1c7a8018c1d850158e534bc8fe0b Mon Sep 17 00:00:00 2001 From: aszlig Date: Tue, 15 Mar 2016 05:03:17 +0100 Subject: release.nix: Avoid trying to build games on Hydra The packages in vuizvui.games use the NixOS module system for configuration and provides the particular game derivations based on that. As the configuration is all about Steam/Humblebundle account credentials we obviously can't build it on Hydra and it thus fails with an evaluation error. Signed-off-by: aszlig --- release.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'release.nix') diff --git a/release.nix b/release.nix index 74cf1149..fc33466b 100644 --- a/release.nix +++ b/release.nix @@ -78,9 +78,10 @@ in with pkgsUpstream.lib; with builtins; { }; pkgs = let + noGames = flip removeAttrs [ "games" ]; releaseLib = import "${nixpkgs}/pkgs/top-level/release-lib.nix" { inherit supportedSystems; - packageSet = attrs: (import vuizvui attrs).pkgs.vuizvui; + packageSet = attrs: noGames (import vuizvui attrs).pkgs.vuizvui; }; in with releaseLib; mapTestOn (packagePlatforms releaseLib.pkgs); -- cgit 1.4.1