biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / mdbtools / default.nix
blobc543a7720554ba43a0a494e29ceaeedc39450388
1 { stdenv, lib, fetchFromGitHub, glib, readline
2 , bison, flex, pkg-config, autoreconfHook
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   env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=unused-but-set-variable";
21   nativeBuildInputs = [
22     pkg-config bison flex autoreconfHook txt2man which
23   ];
25   buildInputs = [ glib readline ];
27   enableParallelBuilding = true;
29   meta = with lib; {
30     description = ".mdb (MS Access) format tools";
31     license = with licenses; [ gpl2Plus lgpl2 ];
32     maintainers = [ ];
33     platforms = platforms.unix;
34     inherit (src.meta) homepage;
35   };