mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
7 lines
146 B
Nix
7 lines
146 B
Nix
{system, narFile, outPath}: derivation {
|
|
name = "unnar";
|
|
builder = ./unnar.sh;
|
|
system = system;
|
|
narFile = narFile;
|
|
outPath = outPath;
|
|
}
|