about summary refs log tree commit diff
path: root/pkgs/build-support/channel.nix
blob: d5cc74e704232f0e6fd22f4697c764be6b05bb82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ stdenv }:

{ name, src, constituents ? [], ... }@args:

let
  channel = stdenv.mkDerivation ({
    inherit name src constituents;
    preferLocalBuild = true;
    _hydraAggregate = true;

    phases = [ "unpackPhase" "patchPhase" "installPhase" ];
    installPhase = ''
      mkdir -p "$out/tarballs" "$out/nix-support"

      tar cJf "$out/tarballs/nixexprs.tar.xz" \
        --owner=0 --group=0 --mtime="1970-01-01 00:00:00 UTC" \
        --transform='s!^\.!${name}!' .

      echo "channel - $out/tarballs/nixexprs.tar.xz" \
        > "$out/nix-support/hydra-build-products"

      echo $constituents > "$out/nix-support/hydra-aggregate-constituents"
      for i in $constituents; do
        if [ -e "$i/nix-support/failed" ]; then
          touch "$out/nix-support/failed"
        fi
      done
    '';
  } // removeAttrs args [ "name" "channelName" "src" "constituents" ]);
in channel // {
  # XXX: We're adding meta.isHydraChannel outside of mkDerivation to avoid a
  # typecheck on meta since it doesn't include isHydraChannel.
  meta = (channel.meta or {}) // {
    isHydraChannel = true;
  };
}