Is there another -devel package I should install to provide another <stdint.h> header file?
The README of ocaml-integers don’t really say anything about it.
If I download the sources, and try to compile it, it compiles just fine.
So I tried to install the sources with: opam install . but opam pins this lib to version 0.5.1.
How can I remove the pin to install the sources instead?
opam install . should use the sources from the directory. Opam still needs a version number, so it takes the one declared in the opam file.
One exception to this: if you run opam pin or opam install from a version-controlled directory (e.g. a Git repository), changes that are not committed will not be considered, unless you use the --working-dir option.
Can you show opam pin list? Usually you should be able to remove outdated pins with opam pin remove <NAME>
It is possible that integers used to have some build issues but if the current sources compile it must’ve been fixed in the meantime. I looked at the changelog but didn’t find anything that would pinpoint to this issue, but might’ve been some small fix not mentioned in the log.