aboutsummaryrefslogtreecommitdiff
path: root/src/legacy/unpack-channel.nix
diff options
context:
space:
mode:
Diffstat (limited to 'src/legacy/unpack-channel.nix')
-rw-r--r--src/legacy/unpack-channel.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/legacy/unpack-channel.nix b/src/legacy/unpack-channel.nix
new file mode 100644
index 000000000..84e324a4d
--- /dev/null
+++ b/src/legacy/unpack-channel.nix
@@ -0,0 +1,16 @@
+{
+ name,
+ channelName,
+ src,
+}:
+
+derivation {
+ builder = "builtin:unpack-channel";
+
+ system = "builtin";
+
+ inherit name channelName src;
+
+ # No point in doing this remotely.
+ preferLocalBuild = true;
+}