python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / mdbtools / default.nix
blobb03ac6c785fe2b8dbfc5eb29ff837a5a8a9f55ca
1 { stdenv, lib, fetchFromGitHub, glib, readline
2 , bison, flex, pkg-config, autoreconfHook, libxslt, makeWrapper
3 , txt2man, which
4 }:
6 stdenv.mkDerivation rec {
7   pname = "mdbtools";
8   version = "1.0.0";
10   src = fetchFromGitHub {
11     owner = "mdbtools";
12     repo = "mdbtools";
13     rev = "v${version}";
14     sha256 = "sha256-e9rgTWu8cwuccpp/wAfas1ZeQPTpGcgE6YjLz7KRnhw=";
15   };
17   configureFlags = [ "--disable-scrollkeeper" ];
19   nativeBuildInputs = [
20     pkg-config bison flex autoreconfHook txt2man which
21   ];
23   buildInputs = [ glib readline ];
25   enableParallelBuilding = true;
27   meta = with lib; {
28     description = ".mdb (MS Access) format tools";
29     license = with licenses; [ gpl2 lgpl2 ];
30     maintainers = with maintainers; [ ];
31     platforms = platforms.unix;
32     inherit (src.meta) homepage;
33   };