forked from lix-project/lix
17 lines
210 B
Nix
17 lines
210 B
Nix
{
|
|
name,
|
|
channelName,
|
|
src,
|
|
}:
|
|
|
|
derivation {
|
|
builder = "builtin:unpack-channel";
|
|
|
|
system = "builtin";
|
|
|
|
inherit name channelName src;
|
|
|
|
# No point in doing this remotely.
|
|
preferLocalBuild = true;
|
|
}
|