Package git.b4l.co.th/newedge/default_thai_company as a frappix app
(pkgs/frappix/default-thai-company.nix) and expose it through a new
frappixAppsOverlay that extends the pkgs.frappix scope. Install it on
the poyerp.newedge.house site on deneb.
10 lines
297 B
Nix
10 lines
297 B
Nix
# Extends the frappix app scope with in-house frappe apps.
|
|
# Must be applied after frappixFrappeOverlay (needs prev.frappix).
|
|
final: prev: {
|
|
frappix = prev.frappix.overrideScope (
|
|
ffinal: _fprev: {
|
|
default_thai_company = ffinal.callPackage ./default-thai-company.nix { };
|
|
}
|
|
);
|
|
}
|