-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bounds too restrictive (for Nix) #2
Comments
Thank you very much! Nice to hear it. I have to admit I was neglecting this library a bit and was not keeping up with the dependencies marching forward (I believe that it's got kicked out of Stackage). That said, I am actually working on a rewrite to get things tidied up and bring it up to date. I've also not been too happy with |
I got things to work by simply by making a
... instead of using Would you like me to make a PR to increase the bounds for |
Sure! Thank you very very much! |
Resolve the issue of this package not building for GHC 9.0.2 due to `base` and `text` bounds being too restrictive by simply slightly increasing the freshest/upper bound for both. Tests have not been manually ran for this commit. Assuming all works well because I'm using libjwt-typed with nixpkgs in my project that now uses GHC 9.0.2.
@marcin-rzeznicki done! You may want to run tests on it, because I have not. Please see commit notes. |
This library has been a joy to use, I really like it--good work.
I noticed something when attempting to use Nix for my project.
libjwt-typed
is marked as broken. I was able to progress far enough to realize some simple fixes (marklibjwt
as system dependency was one), but the one I'm writing you about is the version bounds forbase
in your project. In my project I usebase
4.14.3.0 and everything plays nice. However, Nix seems to only providebase
4.16.3.0, but the bounds oflibjwt-typed
forbase
seems to be>=4.13.0.0 && <4.15
.Is there anyway to change the bounds to be more flexible? I may even test out 4.16.3.0 specifically with
libjwt-typed
(and subsequently make a PR) once I resolve something locally. Thank you.The text was updated successfully, but these errors were encountered: