mirror of
https://github.com/NixOS/nix.git
synced 2025-11-27 04:30:59 +01:00
5 lines
111 B
Nix
5 lines
111 B
Nix
{system, path, hashAlgo}: derivation {
|
|
name = "nar";
|
|
builder = ./nar.sh;
|
|
inherit system path hashAlgo;
|
|
}
|