mirror of
https://github.com/NixOS/nix.git
synced 2025-11-28 21:21:00 +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;
|
|
}
|