c550af5446
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/gdbm/versions. These checks were done: - built on NixOS - ran ‘/nix/store/rxca8g769fj1zydp1673w0v09605a5ak-gdbm-1.14.1/bin/gdbmtool -h’ got 0 exit code - ran ‘/nix/store/rxca8g769fj1zydp1673w0v09605a5ak-gdbm-1.14.1/bin/gdbmtool --help’ got 0 exit code - ran ‘/nix/store/rxca8g769fj1zydp1673w0v09605a5ak-gdbm-1.14.1/bin/gdbmtool help’ got 0 exit code - ran ‘/nix/store/rxca8g769fj1zydp1673w0v09605a5ak-gdbm-1.14.1/bin/gdbm_load -h’ got 0 exit code - ran ‘/nix/store/rxca8g769fj1zydp1673w0v09605a5ak-gdbm-1.14.1/bin/gdbm_load --help’ got 0 exit code - ran ‘/nix/store/rxca8g769fj1zydp1673w0v09605a5ak-gdbm-1.14.1/bin/gdbm_dump -h’ got 0 exit code - ran ‘/nix/store/rxca8g769fj1zydp1673w0v09605a5ak-gdbm-1.14.1/bin/gdbm_dump --help’ got 0 exit code - found 1.14.1 with grep in /nix/store/rxca8g769fj1zydp1673w0v09605a5ak-gdbm-1.14.1 - directory tree listing: https://gist.github.com/fdbeceb9acdfc810ba2c598902e40881
67 lines
2.2 KiB
Nix
67 lines
2.2 KiB
Nix
{ stdenv, lib, buildPlatform, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gdbm-1.14.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/gdbm/${name}.tar.gz";
|
|
sha256 = "0pxwz3jlwvglq2mrbxvrjgr8pa0aj73p3v9sxmdlj570zw0gzknd";
|
|
};
|
|
|
|
doCheck = true; # not cross;
|
|
|
|
# Linking static stubs on cygwin requires correct ordering.
|
|
# Consider upstreaming this.
|
|
|
|
# Disable dbmfetch03.at test because it depends on unlink()
|
|
# failing on a link in a chmod -w directory, which cygwin
|
|
# apparently allows.
|
|
postPatch = lib.optionalString buildPlatform.isCygwin ''
|
|
substituteInPlace tests/Makefile.in --replace \
|
|
'_LDADD = ../src/libgdbm.la ../compat/libgdbm_compat.la' \
|
|
'_LDADD = ../compat/libgdbm_compat.la ../src/libgdbm.la'
|
|
substituteInPlace tests/testsuite.at --replace \
|
|
'm4_include([dbmfetch03.at])' ""
|
|
'';
|
|
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";
|
|
|
|
longDescription =
|
|
'' GNU dbm (or GDBM, for short) is a library of database functions that
|
|
use extensible hashing and work similar to the standard UNIX dbm.
|
|
These routines are provided to a programmer needing to create and
|
|
manipulate a hashed database.
|
|
|
|
The basic use of GDBM is to store key/data pairs in a data file.
|
|
Each key must be unique and each key is paired with only one data
|
|
item.
|
|
|
|
The library provides primitives for storing key/data pairs,
|
|
searching and retrieving the data by its key and deleting a key
|
|
along with its data. It also support sequential iteration over all
|
|
key/data pairs in a database.
|
|
|
|
For compatibility with programs using old UNIX dbm function, the
|
|
package also provides traditional dbm and ndbm interfaces.
|
|
'';
|
|
|
|
homepage = http://www.gnu.org/software/gdbm/;
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.vrthra ];
|
|
};
|
|
}
|