nixpkgs/pkgs/tools/misc/mdbtools/default.nix

41 lines
1 KiB
Nix
Raw Normal View History

2020-06-24 06:29:49 +00:00
{ stdenv, lib, fetchFromGitHub, glib, readline
, bison, flex, pkgconfig, autoreconfHook, libxslt, makeWrapper
, txt2man, which
# withUi currently doesn't work. It compiles but fails to run.
, withUi ? false, gtk2, gnome2
}:
2020-06-24 06:29:49 +00:00
let
uiDeps = [ gtk2 ] ++ (with gnome2; [ GConf libglade libgnomeui gnome-doc-utils ]);
in
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "mdbtools";
2020-06-24 06:29:49 +00:00
version = "0.8.2";
src = fetchFromGitHub {
2020-06-24 06:29:49 +00:00
owner = "cyberemissary";
repo = "mdbtools";
rev = version;
2020-06-24 06:29:49 +00:00
sha256 = "12rhf6rgnws6br5dn1l2j7i77q9p4l6ryga10jpax01vvzhr26qc";
};
2020-06-24 06:29:49 +00:00
configureFlags = [ "--disable-scrollkeeper" ];
nativeBuildInputs = [
pkgconfig bison flex autoreconfHook txt2man which
] ++ lib.optional withUi libxslt;
buildInputs = [ glib readline ] ++ lib.optionals withUi uiDeps;
2020-06-24 06:29:49 +00:00
enableParallelBuilding = true;
2020-06-24 06:29:49 +00:00
meta = with lib; {
description = ".mdb (MS Access) format tools";
2018-09-11 21:44:44 +00:00
license = with licenses; [ gpl2 lgpl2 ];
2020-06-24 06:29:49 +00:00
maintainers = with maintainers; [ ];
platforms = platforms.unix;
inherit (src.meta) homepage;
};
}