8 lines
146 B
Nix
8 lines
146 B
Nix
{system, narFile, outPath}: derivation {
|
|
name = "unnar";
|
|
builder = ./unnar.sh;
|
|
system = system;
|
|
narFile = narFile;
|
|
outPath = outPath;
|
|
}
|