7 lines
104 B
Nix
7 lines
104 B
Nix
|
{system, inputs}:
|
||
|
|
||
|
derivation {
|
||
|
name = "channels";
|
||
|
builder = ./unpack.sh;
|
||
|
inherit system inputs;
|
||
|
}
|