7f5b839524
`selectVersion ./foo "bar"' instead of `import ./foo/bar.nix'. * Replaced `with args' with formal function arguments in several packages. * Renamed several files to `default.nix'. As a general rule, version numbers should only be included in the filename when there is a reason to keep multiple versions of a package in Nixpkgs. Otherwise, it just makes it harder to update the package. svn path=/nixpkgs/trunk/; revision=18403
21 lines
521 B
Nix
21 lines
521 B
Nix
{ stdenv, fetchurl, glib, readline, bison, flex, pkgconfig }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "mdbtools-0.6pre1";
|
|
|
|
src = fetchurl {
|
|
url = http://prdownloads.sourceforge.net/mdbtools/mdbtools-0.6pre1.tar.gz;
|
|
sha256 = "1lz33lmqifjszad7rl1r7rpxbziprrm5rkb27wmswyl5v98dqsbi";
|
|
};
|
|
|
|
buildInputs = [glib readline bison flex pkgconfig];
|
|
|
|
preConfigure = ''
|
|
sed -e 's@static \(GHashTable [*]mdb_backends;\)@\1@' -i src/libmdb/backend.c
|
|
'';
|
|
|
|
meta = {
|
|
description = ".mdb (MS Access) format tools";
|
|
};
|
|
}
|