1 { stdenv, lib, fetchFromGitHub, glib, readline
2 , bison, flex, pkg-config, autoreconfHook
6 stdenv.mkDerivation rec {
10 src = fetchFromGitHub {
14 sha256 = "sha256-e9rgTWu8cwuccpp/wAfas1ZeQPTpGcgE6YjLz7KRnhw=";
17 configureFlags = [ "--disable-scrollkeeper" ];
19 env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=unused-but-set-variable";
22 pkg-config bison flex autoreconfHook txt2man which
25 buildInputs = [ glib readline ];
27 enableParallelBuilding = true;
30 description = ".mdb (MS Access) format tools";
31 license = with licenses; [ gpl2Plus lgpl2 ];
33 platforms = platforms.unix;
34 inherit (src.meta) homepage;