9 lines
139 B
Nix
9 lines
139 B
Nix
|
{ pkgs }:
|
||
|
let
|
||
|
# self is not included here to avoid recursion.
|
||
|
callPackage = pkgs.lib.callPackageWith pkgs;
|
||
|
self = rec {
|
||
|
};
|
||
|
in
|
||
|
self
|