about summary refs log tree commit diff
path: root/pkgs/default.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-03-15 04:22:27 +0100
committeraszlig <aszlig@redmoonstudios.org>2016-03-15 04:55:48 +0100
commit74ca4a9f0747862d968d7e36526a5b3c9750fec7 (patch)
tree91f49366a1d445f9ef432c83f3c8b12ae1001295 /pkgs/default.nix
parent5f0b5bba153b2169c7ca4e5bcaafdabbe2cb6d8a (diff)
pkgs: Hook in games into vuizvui package set
New we can reference the games using pkgs.vuizvui.games.*, although game
configuration currently still resorts to using ~/.config/nixgames.nix if
there is no nixpkgs.config.vuizvui.games set. In this vein, this should
also avoid Hydra to try to build those games, because those aren't
publicly available for free.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/default.nix')
-rw-r--r--pkgs/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix
index 6eec67a4..ad4e8e25 100644
--- a/pkgs/default.nix
+++ b/pkgs/default.nix
@@ -24,6 +24,11 @@ let
     tomahawk = callPackage ./tomahawk { qt5 = pkgs.qt55; };
     twitchstream = callPackage ./twitchstream { };
 
+    games = import ./games {
+      inherit pkgs;
+      config = pkgs.config.vuizvui.games or null;
+    };
+
     kernelPatches = {
       bfqsched = callPackage ./kpatches/bfqsched { };
     };