gdbm: add symlinks for compatibility
some tools check this location to distinguish between gdbm and ndbm
This commit is contained in:
parent
52d1f68005
commit
3170d8608d
1 changed files with 11 additions and 0 deletions
|
@ -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";
|
||||
|
||||
|
|
Loading…
Reference in a new issue