Alain Péteut
Alain Péteut
Added 2.6 tests, works w/ `future.moves`. `funcsigs` is a dependency in addition. Travis CI tests can be found [here](https://travis-ci.org/peteut/pyramda/builds/150783972).
@johntoomey will update accordingly.
@mweinelt For now I'm using `flake.nix` within the GitLab runner like this: ```yaml stages: - build image: nixos/nix:latest build-cli: stage: build script: - nix develop --experimental-features 'nix-command flakes' --impure --command...
> > ``` > > sudo systemctl restart user@1000 > > ``` > > This solved to me a `Failed to connect to bus: No such file or directory` issue....
Bumped into this today. The interpreter path is missing: _/lib64/ld-lsb-x86-64.so.3_. ``` $ file `which lmutil` ... lmutil: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-lsb-x86-64.so.3, for...
`patchelf` does the trick for me: ``` patchelf --set-interpreter /lib64/ld-linux-x86-64.so.2 `which ` ```