Add explicit support for Void Linux, fixes #378

This commit is contained in:
Julian Ospald 2023-10-20 17:51:40 +08:00
parent 6e13602077
commit 1304e22235
No known key found for this signature in database
GPG Key ID: 4275CDA6A29BED43
1 changed files with 2 additions and 0 deletions

View File

@ -250,6 +250,7 @@ data LinuxDistro = Debian
| Alpine
| AmazonLinux
| RockyLinux
| VoidLinux
-- rolling
| Gentoo
| Exherbo
@ -270,6 +271,7 @@ distroToString RedHat = "redhat"
distroToString Alpine = "alpine"
distroToString AmazonLinux = "amazon"
distroToString RockyLinux = "rocky"
distroToString VoidLinux = "void"
distroToString Gentoo = "gentoo"
distroToString Exherbo = "exherbo"
distroToString UnknownLinux = "unknown"