Fixes for RHEL-based package commands (#25)

* fixes for RHEL-based package commands

* move nix to the bottom of the list
This commit is contained in:
Maddie 2023-02-03 17:49:13 +00:00 committed by GitHub
parent 49047e5b6c
commit 455299ffe3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,19 +2,19 @@ from subprocess import check_output
commands = [
"pacman -Qq --color never", # Arch Linux
"xbps-query -l", # Void Linux
"kiss l", # KISS Linux
"dpkg-query -f '.\n' -W", # Debian, Ubuntu, Mint
"dnf list installed", # Fedora
"zypper search -i", # openSUSE
"dnf list installed | tail -n +2", # Fedora, RHEL
"rpm -qa", # RHEL, Fedora Core, CentOS
"yum list installed", # RHEL, Fedora Core, CentOS
"nix-store -qR /run/current-system/sw", # NixOS
"yum list installed | tail -n +2", # RHEL, Fedora Core, CentOS
"xbps-query -l", # Void Linux
"zypper search -i", # openSUSE
"kiss l", # KISS Linux
"equery list '*'", # Gentoo
"qlist -I", # Gentoo
"pkg info -a", # BSDs
"pkg_info", # BSDs
"apk info", # Alpine
"nix-store -qR /run/current-system/sw", # Nix
]