aboutsummaryrefslogtreecommitdiff
path: root/src/legacy/unpack-channel.nix
blob: 84e324a4d896c2e9bad31da818ee4f4bb2af13c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  name,
  channelName,
  src,
}:

derivation {
  builder = "builtin:unpack-channel";

  system = "builtin";

  inherit name channelName src;

  # No point in doing this remotely.
  preferLocalBuild = true;
}