nixpkgs/pkgs/tools/misc/mdbtools/default.nix
figsoda f1ec434848 pkgs/tools/misc: remove dead code
with the help of deadnix & nil
2023-07-13 17:37:07 +03:00

35 lines
787 B
Nix

{ stdenv, lib, fetchFromGitHub, glib, readline
, bison, flex, pkg-config, autoreconfHook
, txt2man, which
}:
stdenv.mkDerivation rec {
pname = "mdbtools";
version = "1.0.0";
src = fetchFromGitHub {
owner = "mdbtools";
repo = "mdbtools";
rev = "v${version}";
sha256 = "sha256-e9rgTWu8cwuccpp/wAfas1ZeQPTpGcgE6YjLz7KRnhw=";
};
configureFlags = [ "--disable-scrollkeeper" ];
nativeBuildInputs = [
pkg-config bison flex autoreconfHook txt2man which
];
buildInputs = [ glib readline ];
enableParallelBuilding = true;
meta = with lib; {
description = ".mdb (MS Access) format tools";
license = with licenses; [ gpl2 lgpl2 ];
maintainers = with maintainers; [ ];
platforms = platforms.unix;
inherit (src.meta) homepage;
};
}