1 { stdenv, lib, fetchFromGitHub, glib, readline
2 , bison, flex, pkg-config, autoreconfHook, libxslt, makeWrapper
6 stdenv.mkDerivation rec {
10 src = fetchFromGitHub {
14 sha256 = "sha256-e9rgTWu8cwuccpp/wAfas1ZeQPTpGcgE6YjLz7KRnhw=";
17 configureFlags = [ "--disable-scrollkeeper" ];
20 pkg-config bison flex autoreconfHook txt2man which
23 buildInputs = [ glib readline ];
25 enableParallelBuilding = true;
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;