2008-01-23 19:11:03 +01:00
|
|
|
args : with args; with builderDefs {src="";} null;
|
2008-01-29 14:15:56 +01:00
|
|
|
let localDefs = builderDefs (rec {
|
2007-11-03 05:15:13 +01:00
|
|
|
src = /* put a fetchurl here */
|
|
|
|
|
|
|
|
buildInputs = [];
|
|
|
|
configureFlags = [];
|
2008-01-29 14:15:56 +01:00
|
|
|
}) null; /* null is a terminator for sumArgs */
|
2008-01-23 19:11:03 +01:00
|
|
|
in with localDefs;
|
2007-11-03 05:15:13 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2008-01-23 19:11:03 +01:00
|
|
|
name = "${abort "Specify name"}-"+version;
|
2007-11-03 05:15:13 +01:00
|
|
|
builder = writeScript (name + "-builder")
|
2008-01-23 19:11:03 +01:00
|
|
|
(textClosure localDefs
|
|
|
|
[(abort "Specify phases - defined here or in builderDefs") doForceShare doPropagate]);
|
2007-11-03 05:15:13 +01:00
|
|
|
meta = {
|
|
|
|
description = "
|
|
|
|
${abort "Write a description"}
|
|
|
|
";
|
|
|
|
};
|
|
|
|
}
|