Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Added: nala (and nala-legacy) #436

Merged
merged 2 commits into from
Sep 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,8 @@ cog.out(pretty_list)
| [<img src=".github/github.png" align="top" width="20" />](https://github.com/SoongNoonien/mpdevil) | `mpdevil` | <i>A simple music browser for MPD.</i> |
| [<img src=".github/github.png" align="top" width="20" />](https://agam778.github.io/MS-Office-Electron/) | `ms-office-electron` | <i>A Microsoft Office Online Desktop Client made with Electron.</i> |
| [<img src=".github/github.png" align="top" width="20" />](https://mullvad.net/) | `mullvad-vpn` | <i>VPN Service based in Sweden that does not collect user data.</i> |
| [<img src=".github/debian.png" align="top" width="20" />](https://gitlab.com/volian/nala) | `nala` | <i>Commandline frontend for the APT package manager for Ubuntu 22.04 / Debian Sid and newer.</i> |
| [<img src=".github/debian.png" align="top" width="20" />](https://gitlab.com/volian/nala) | `nala-legacy` | <i>Commandline frontend for the APT package manager for Ubuntu 21.04 / Debian Stable and older.</i> |
| [<img src=".github/debian.png" align="top" width="20" />](https://neo4j.com/) | `neo4j` | <i>The Graph Data Platform for Today's Intelligent Applications.</i> |
| [<img src=".github/github.png" align="top" width="20" />](https://neovim.io/) | `neovim` | <i>Hyperextensible Vim-based text editor</i> |
| [<img src=".github/launchpad.png" align="top" width="20" />](https://nextcloud.com/) | `nextcloud-desktop` | <i>The self-hosted productivity platform that keeps you in control.</i> |
Expand Down
22 changes: 22 additions & 0 deletions deb-get
Original file line number Diff line number Diff line change
Expand Up @@ -699,6 +699,28 @@ function deb_code() {
SUMMARY="Code editing. Redefined."
}

function deb_nala() {
ARCHS_SUPPORTED="amd64 arm64 armhf i386"
GPG_KEY_URL="https://deb.volian.org/volian/scar.key"
APT_LIST_NAME="nala"
APT_REPO_URL="http://deb.volian.org/volian/ scar main"
APT_REPO_OPTIONS="arch=${HOST_ARCH}"
PRETTY_NAME="Nala"
WEBSITE="https://gitlab.com/volian/nala"
SUMMARY="Commandline frontend for the APT package manager for Ubuntu 22.04 / Debian Sid and newer."
}

function deb_nala-legacy() {
ARCHS_SUPPORTED="amd64 arm64 armhf i386"
GPG_KEY_URL="https://deb.volian.org/volian/scar.key"
APT_LIST_NAME="nala-legacy"
APT_REPO_URL="http://deb.volian.org/volian/ scar main"
APT_REPO_OPTIONS="arch=${HOST_ARCH}"
PRETTY_NAME="Nala Legacy"
WEBSITE="https://gitlab.com/volian/nala"
SUMMARY="Commandline frontend for the APT package manager for Ubuntu 21.04 / Debian Stable and older."
}

function deb_rstudio() {
if [ "${ACTION}" != "prettylist" ]; then
case "${UPSTREAM_CODENAME}" in
Expand Down