mirror of
https://github.com/NixOS/nix.git
synced 2025-02-17 01:12:33 +00:00
7 lines
103 B
Nix
7 lines
103 B
Nix
{system, path}: derivation {
|
|
name = "nar";
|
|
builder = ./nar.sh;
|
|
system = system;
|
|
path = path;
|
|
}
|