about summary refs log tree commit diff
path: root/pkgs/build-support/channel.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/build-support/channel.nix')
-rw-r--r--pkgs/build-support/channel.nix6
1 files changed, 5 insertions, 1 deletions
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" ]