2007-12-01 16:20:23 +00:00
|
|
|
args : with args;
|
2008-11-04 21:24:10 +00:00
|
|
|
let localDefs = builderDefs.passthru.function {
|
2007-12-01 16:20:23 +00:00
|
|
|
src = /* put a fetchurl here */
|
|
|
|
fetchurl {
|
|
|
|
url = mirror://sourceforge/libdbi/libdbi-0.8.2.tar.gz;
|
|
|
|
sha256 = "01zlfv9hd4iv9v1xlh64ajdgx95jb0sjpazavapqc0zwiagwcg4d";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [];
|
|
|
|
configureFlags = [];
|
2008-08-19 05:54:09 +00:00
|
|
|
};
|
2008-01-18 12:36:56 +00:00
|
|
|
in with localDefs;
|
2007-12-01 16:20:23 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2009-11-18 09:39:59 +00:00
|
|
|
name = "libdbi-0.8.2";
|
2007-12-01 16:20:23 +00:00
|
|
|
builder = writeScript (name + "-builder")
|
2008-01-18 12:36:56 +00:00
|
|
|
(textClosure localDefs [doConfigure doMakeInstall doForceShare doPropagate]);
|
2007-12-01 16:20:23 +00:00
|
|
|
meta = {
|
2009-03-03 13:27:40 +00:00
|
|
|
description = "DB independent interface to DB";
|
2008-03-02 18:49:31 +00:00
|
|
|
inherit src;
|
2007-12-01 16:20:23 +00:00
|
|
|
};
|
|
|
|
}
|