mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-14 16:14:50 +00:00
12 lines
201 B
Bash
12 lines
201 B
Bash
oldPreConfigure=$preConfigure
|
|
preConfigure=myPreConfigure
|
|
myPreConfigure() {
|
|
cat > config.in <<EOF
|
|
PREFIX = size_t
|
|
HASH = u_int32_t
|
|
LIB = $db4/lib
|
|
INCLUDE = $db4/include
|
|
EOF
|
|
$oldPreConfigure
|
|
}
|