Closed issue by zDylant on void-packages repository https://github.com/void-linux/void-packages/issues/48334 Description: Hello, i'm currently packaging [neko](https://github.com/HaxeFoundation/neko/) but this package dist files use dashes instead of dots: `https://github.com/HaxeFoundation/neko/archive/refs/tags/v2-3-0.tar.gz` Since `version` doesn't allow dashes, i'm using the following workaround, but i want to know if this is allowed or if there is a better way to do it. ``` version="2.3.0" distfiles="https://github.com/HaxeFoundation/neko/archive/refs/tags/v${version//./-}.tar.gz" ```