From 239f72e4a2b8ded94758d12efb0e2a0e307bcfaf Mon Sep 17 00:00:00 2001 From: aszlig Date: Tue, 21 Apr 2015 08:05:46 +0200 Subject: channel: Pass meta.isHydraChannel = true. In the latest not-yet-public implementation of Hydra channel improvements, we now have a meta attribute to designate a channel. Signed-off-by: aszlig --- pkgs/build-support/channel.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'pkgs/build-support/channel.nix') diff --git a/pkgs/build-support/channel.nix b/pkgs/build-support/channel.nix index db147bb7..f2837a96 100644 --- a/pkgs/build-support/channel.nix +++ b/pkgs/build-support/channel.nix @@ -3,7 +3,7 @@ { name, src, constituents ? [], meta ? {}, ... }@args: stdenv.mkDerivation { - inherit name src constituents meta; + inherit name src constituents; _hydraAggregate = true; phases = [ "unpackPhase" "installPhase" ]; @@ -24,4 +24,8 @@ stdenv.mkDerivation { fi done ''; + + meta = meta // { + isHydraChannel = true; + }; } // removeAttrs args [ "name" "channelName" "src" "constituents" "meta" ] -- cgit 1.4.1