mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 16:26:18 +02:00
6fcdbcac20
the Nix:: namespace.
7 lines
124 B
Nix
7 lines
124 B
Nix
{ system, storePath, hashAlgo }:
|
|
|
|
derivation {
|
|
name = "nar";
|
|
builder = ./nar.sh;
|
|
inherit system storePath hashAlgo;
|
|
}
|