3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/kyotocabinet/default.nix

37 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, zlib }:
2014-11-15 05:53:33 +00:00
stdenv.mkDerivation rec {
pname = "kyotocabinet";
version = "1.2.79";
2014-11-15 05:53:33 +00:00
src = fetchurl {
url = "https://dbmx.net/kyotocabinet/pkg/kyotocabinet-${version}.tar.gz";
sha256 = "079ymsahlrijswgwfr2la9yw5h57l752cprhp5dz31iamsj1vyv7";
2014-11-15 05:53:33 +00:00
};
prePatch = lib.optionalString stdenv.isDarwin ''
2015-07-23 23:47:16 +01:00
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++
2017-09-12 21:03:08 +01:00
substituteInPlace configure \
--replace /usr/local/bin:/usr/local/sbin: "" \
--replace /usr/bin:/usr/sbin: "" \
--replace /bin:/sbin: "" \
--replace stdc++ c++
2015-07-23 23:47:16 +01:00
'';
2014-11-15 05:53:33 +00:00
buildInputs = [ zlib ];
meta = with lib; {
homepage = "https://dbmx.net/kyotocabinet";
description = "A library of routines for managing a database";
license = licenses.gpl3Plus;
2014-11-15 05:53:33 +00:00
platforms = platforms.all;
};
}