about summary refs log tree commit diff
path: root/pkgs/default.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2015-04-15 17:29:39 +0200
committeraszlig <aszlig@redmoonstudios.org>2015-04-15 17:29:39 +0200
commit418537a3628fc6c21b3dc2949c114b1a27dd2768 (patch)
tree3f5ae493244124a71742383416f695d7395c5809 /pkgs/default.nix
parenta610560bb4b5a05eb480a4dbab3e24c553727047 (diff)
pkgs: Add helper function for creating channels.
We're going to create several channels and we don't want to code
duplicates across vuizvui. This essentially not only creates a channel
but also ties it to constituents, which make sure that channels are only
updated whenever all constituent builds are successful.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/default.nix')
-rw-r--r--pkgs/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix
index 1931dfcd..4a3f819e 100644
--- a/pkgs/default.nix
+++ b/pkgs/default.nix
@@ -4,6 +4,8 @@ let
   callPackage = pkgs.lib.callPackageWith (pkgs // self);
 
   self = {
+    mkChannel = callPackage ./build-support/channel.nix { };
+
     aacolorize = callPackage ./aacolorize { };
     axbo = callPackage ./axbo { };
     beehive = callPackage ./beehive { };