Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
78 lines
1.8 KiB
Nix
78 lines
1.8 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
}:
|
|
let
|
|
isCross = stdenv.buildPlatform != stdenv.hostPlatform;
|
|
cross = "${stdenv.hostPlatform.config}";
|
|
static = stdenv.hostPlatform.isStatic;
|
|
|
|
cc = if !isCross then "cc" else "${cross}-cc";
|
|
ar = if !isCross then "ar" else "${cross}-ar";
|
|
ranlib = if !isCross then "ranlib" else "${cross}-ranlib";
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
postPatch = ''
|
|
sed -i 's,set --, set -x; set --,' Makefile
|
|
'';
|
|
pname = "tinycdb";
|
|
version = "0.81";
|
|
# In general, static library (.a) goes to "dev", shared (.so) to
|
|
# "lib". In case of static build, there is no .so library, so "lib"
|
|
# output is useless and empty.
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"man"
|
|
]
|
|
++ lib.optional (!static) "lib";
|
|
separateDebugInfo = true;
|
|
makeFlags = [
|
|
"prefix=$(out)"
|
|
"CC=${cc}"
|
|
"AR=${ar}"
|
|
"RANLIB=${ranlib}"
|
|
"static"
|
|
]
|
|
++ lib.optional (!static) "shared";
|
|
postInstall = ''
|
|
mkdir -p $dev/lib $out/bin
|
|
mv $out/lib/libcdb.a $dev/lib
|
|
rm --recursive $out/lib
|
|
''
|
|
+ (
|
|
if static then
|
|
''
|
|
cp cdb $out/bin/cdb
|
|
''
|
|
else
|
|
''
|
|
mkdir -p $lib/lib
|
|
cp libcdb.so* $lib/lib
|
|
cp cdb-shared $out/bin/cdb
|
|
''
|
|
);
|
|
|
|
src = fetchurl {
|
|
url = "https://www.corpit.ru/mjt/tinycdb/tinycdb-${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-Rp3i1EW/VIgPZS9LbclcfN9vVQLDVSSkWyEi1w1H68I=";
|
|
};
|
|
|
|
meta = {
|
|
|
|
description = "Utility to manipulate constant databases (cdb)";
|
|
mainProgram = "cdb";
|
|
|
|
longDescription = ''
|
|
tinycdb is a small, fast and reliable utility and subroutine
|
|
library for creating and reading constant databases. The database
|
|
structure is tuned for fast reading.
|
|
'';
|
|
|
|
homepage = "https://www.corpit.ru/mjt/tinycdb.html";
|
|
license = lib.licenses.publicDomain;
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|