2016-01-17 23:04:40 +00:00
|
|
|
{ stdenv, fetchgit, glib, readline, bison, flex, pkgconfig,
|
2018-02-25 02:23:58 +00:00
|
|
|
libiconv, autoreconfHook, which, txt2man, gnome-doc-utils, scrollkeeper }:
|
2010-09-30 17:50:37 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-09-03 18:54:15 +01:00
|
|
|
name = "mdbtools-git-2014-07-25";
|
2010-09-30 17:50:37 +01:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "http://github.com/brianb/mdbtools.git";
|
2014-09-03 18:54:15 +01:00
|
|
|
rev = "9ab40e83e6789015c965c92bdb62f92f8cdd0dbd";
|
2016-06-02 12:26:44 +01:00
|
|
|
sha256 = "0hlf5lk86xm0bpdlpk4a1zyfvbim76dhvmybxga2p7mbb1jc825l";
|
2010-09-30 17:50:37 +01:00
|
|
|
};
|
|
|
|
|
2017-09-14 20:24:37 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2014-11-03 11:55:12 +00:00
|
|
|
buildInputs = [
|
2017-09-14 20:24:37 +01:00
|
|
|
glib readline bison flex autoreconfHook which txt2man
|
2018-02-25 02:23:58 +00:00
|
|
|
gnome-doc-utils scrollkeeper libiconv
|
2014-11-26 23:16:50 +00:00
|
|
|
];
|
2010-09-30 17:50:37 +01:00
|
|
|
|
2016-01-17 23:04:40 +00:00
|
|
|
preAutoreconf = ''
|
|
|
|
sed -e '/ENABLE_GTK_DOC/aAM_CONDITIONAL(HAVE_GNOME_DOC_UTILS, test x$enable_gtk_doc = xyes)' \
|
|
|
|
-e '/ENABLE_GTK_DOC/aAM_CONDITIONAL(ENABLE_SK, test x$enable_scrollkeeper = xyes)' \
|
|
|
|
-i configure.ac
|
|
|
|
'';
|
|
|
|
|
2010-09-30 17:50:37 +01:00
|
|
|
preConfigure = ''
|
|
|
|
sed -e 's@static \(GHashTable [*]mdb_backends;\)@\1@' -i src/libmdb/backend.c
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ".mdb (MS Access) format tools";
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2010-09-30 17:50:37 +01:00
|
|
|
};
|
|
|
|
}
|