about summary refs log tree commit diff
path: root/corepkgs/nar/nar.nix
blob: d3d799998f10048880bc4ec7e0a0481fd1e21635 (plain) (blame)
1
2
3
4
5
6
7
{ system, storePath, hashAlgo }:

derivation {
  name = "nar";
  builder = ./nar.sh;
  inherit system storePath hashAlgo;
}