NixOS / nixpkgs

Nix Packages collection & NixOS
MIT License
18.27k stars 14.25k forks source link

readline: add library symlinks on OpenBSD #358074

Open rhelmot opened 7 hours ago

rhelmot commented 7 hours ago

This install error is caused by a very old libtool. We can't autoreconfHook this package, so this is the best we've got!

Before:

$ ll /nix/store/q4xfivjrnjhshp0khjy66nq5ljjdmfv1-readline-x86_64-unknown-openbsd-8.2p13/lib
total 448K
-r--r--r-- 1 root root  48K Dec 31  1969 libhistory.so.8.2
-r--r--r-- 1 root root 399K Dec 31  1969 libreadline.so.8.2

After:

$ ll /nix/store/q9986qvm5jhnlxckp972cmhdgp5v52km-readline-x86_64-unknown-openbsd-8.2p13/lib
total 448K
lrwxrwxrwx 1 root root   17 Dec 31  1969 libhistory.so -> libhistory.so.8.2
-r--r--r-- 1 root root  48K Dec 31  1969 libhistory.so.8.2
lrwxrwxrwx 1 root root   18 Dec 31  1969 libreadline.so -> libreadline.so.8.2
-r--r--r-- 1 root root 399K Dec 31  1969 libreadline.so.8.2

Things done


Add a :+1: reaction to pull requests you find important.