From 3a9768c45162cf032226c2f2dea758df23510736 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Sun, 17 Jun 2018 17:04:57 +0200 Subject: [PATCH] Nest all morepkgs packages under a morepkgs namespace --- build/release.nix | 2 +- default.nix | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/build/release.nix b/build/release.nix index 37a2779..b319a18 100644 --- a/build/release.nix +++ b/build/release.nix @@ -14,6 +14,6 @@ let nixpkgsWithOverlays.lib.getAttr path nixpkgsWithOverlays; jobs = rec { - xonotic = buildPath "xonotic"; + xonotic = buildPath "morepkgs.xonotic"; }; in jobs diff --git a/default.nix b/default.nix index e5f352e..f7f2aea 100644 --- a/default.nix +++ b/default.nix @@ -1,4 +1,6 @@ self: super: { - xonotic = super.callPackage ./pkgs/games/xonotic {}; + morepkgs = { + xonotic = super.callPackage ./pkgs/games/xonotic {}; + }; }