gdbm: add symlinks for compatibility

some tools check this location to distinguish between gdbm and ndbm
This commit is contained in:
Jörg Thalheim 2017-09-19 11:54:40 +01:00
parent 52d1f68005
commit 3170d8608d

View file

@ -25,6 +25,17 @@ stdenv.mkDerivation rec {
'';
configureFlags = [ "--enable-libgdbm-compat" ];
postInstall = ''
# create symlinks for compatibility
install -dm755 $out/include/gdbm
(
cd $out/include/gdbm
ln -s ../gdbm.h gdbm.h
ln -s ../ndbm.h ndbm.h
ln -s ../dbm.h dbm.h
)
'';
meta = with lib; {
description = "GNU dbm key/value database library";