Added MDBtools

svn path=/nixpkgs/trunk/; revision=11811
This commit is contained in:
Michael Raskin
2008-05-11 09:45:26 +00:00
parent 66f306ac4e
commit acf7290ae7
2 changed files with 29 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
args : with args;
rec {
src = fetchurl {
url = http://prdownloads.sourceforge.net/mdbtools/mdbtools-0.6pre1.tar.gz;
sha256 = "1lz33lmqifjszad7rl1r7rpxbziprrm5rkb27wmswyl5v98dqsbi";
};
buildInputs = [glib readline bison flex pkgconfig];
configureFlags = [];
preConfigure = FullDepEntry (''
sed -e 's@static \(GHashTable [*]mdb_backends;\)@\1@' -i src/libmdb/backend.c
'') ["doUnpack" "minInit"];
/* doConfigure should be specified separately */
phaseNames = ["preConfigure" "doConfigure" "doMakeInstall"];
name = "mdbtools-" + version;
meta = {
description = ".mdb (MS Access) format tools";
};
}