7 lines
103 B
Nix
7 lines
103 B
Nix
|
{system, path}: derivation {
|
||
|
name = "nar";
|
||
|
builder = ./nar.sh;
|
||
|
system = system;
|
||
|
path = path;
|
||
|
}
|