info "When you ask Nix to install a package, it will first try to get it in pre-compiled form from a binary cache. By default, Nix will use the binary cache https://cache.nixos.org; it contains binaries for most packages in Nixpkgs. Only if no binary is available in the binary cache, Nix will build the package from source."
sudocmd nix-env -iA$@
return;;
appget|winget)
sudocmd $PMTYPEinstall$@
return;;
...
...
@@ -4592,6 +4599,9 @@ case $PMTYPE in
apk)
CMD="apk list --available"
;;
nix)
CMD="nix-env -qaP"
;;
appget)
CMD="appget search"
;;
...
...
@@ -4998,6 +5008,7 @@ __epm_pack()
{
local packname="$1"
local tarname="$2"
local packversion="$3"
returntarname=''
local repackcode="$EPM_PACK_SCRIPTS_DIR/$packname.sh"