python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / tkrzw / default.nix
blob4ede98f75099e15ff95d512a2af5da8e1e528718
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "tkrzw";
5   version = "1.0.24";
6   # TODO: defeat multi-output reference cycles
8   src = fetchurl {
9     url = "https://dbmx.net/tkrzw/pkg/tkrzw-${version}.tar.gz";
10     hash = "sha256-G7SVKgU4b8I5iwAlGHL/w8z0fhI+Awe3V6aqFsOnUrA=";
11   };
13   postPatch = ''
14     substituteInPlace configure \
15       --replace 'PATH=".:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:$PATH"' ""
16   '';
18   enableParallelBuilding = true;
20   doCheck = false; # memory intensive
22   meta = with lib; {
23     description = "A set of implementations of DBM";
24     homepage = "https://dbmx.net/tkrzw/";
25     maintainers = with maintainers; [ ehmry ];
26     license = licenses.asl20;
27     platforms = platforms.all;
28   };