21 lines
756 B
Nix
21 lines
756 B
Nix
self: super: {
|
|
bento = (super.callPackage ../pkgs/bento { });
|
|
ykfde = (super.callPackage ../pkgs/ykfde { });
|
|
creality-print = (super.callPackage ../pkgs/creality-print.nix { });
|
|
openaudible = (super.callPackage ../pkgs/openaudible.nix { });
|
|
openmanus = (super.callPackage ../pkgs/openmanus.nix { });
|
|
ai-mailer = self.callPackage ../pkgs/ai-mailer.nix { };
|
|
|
|
# Python packages
|
|
python3 = super.python3.override {
|
|
packageOverrides = pself: psuper: {
|
|
mini-racer = pself.callPackage ../pkgs/mini-racer.nix { };
|
|
};
|
|
};
|
|
python3Packages = self.python3.pkgs;
|
|
|
|
pyload-ng = self.callPackage ../pkgs/pyload-ng-updated.nix { pyload-ng = super.pyload-ng; };
|
|
|
|
# vscode-insiders = (super.callPackage ../pkgs/vscode-insiders.nix { });
|
|
}
|