Files
nixpkgs/pkgs/by-name/ky/kyotocabinet/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

42 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchurl,
zlib,
}:
stdenv.mkDerivation rec {
pname = "kyotocabinet";
version = "1.2.80";
src = fetchurl {
url = "https://dbmx.net/kyotocabinet/pkg/kyotocabinet-${version}.tar.gz";
sha256 = "sha256-TIXXNmaNgpIL/b25KsPWa32xEI8JWBp2ndkWCgLe80k=";
};
prePatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
substituteInPlace kccommon.h \
--replace tr1/unordered_map unordered_map \
--replace tr1/unordered_set unordered_set \
--replace tr1::hash std::hash \
--replace tr1::unordered_map std::unordered_map \
--replace tr1::unordered_set std::unordered_set
substituteInPlace lab/kcdict/Makefile --replace stdc++ c++
substituteInPlace configure \
--replace /usr/local/bin:/usr/local/sbin: "" \
--replace /usr/bin:/usr/sbin: "" \
--replace /bin:/sbin: "" \
--replace stdc++ c++
'';
buildInputs = [ zlib ];
meta = with lib; {
homepage = "https://dbmx.net/kyotocabinet";
description = "Library of routines for managing a database";
license = licenses.gpl3Plus;
platforms = platforms.all;
};
}