nixpkgs/pkgs/top-level/template-composing-builder.nix
Michael Raskin a8db1746a5 Fixed log nesting; added Qi.
svn path=/nixpkgs/trunk/; revision=9601
2007-11-08 14:34:54 +00:00

18 lines
440 B
Nix

args : with args;
with builderDefs {
src = /* put a fetchurl here */
buildInputs = [];
configureFlags = [];
} null; /* null is a terminator for sumArgs */
stdenv.mkDerivation rec {
name = "${abort "Specify name"}";
builder = writeScript (name + "-builder")
(textClosure [(abort "Specify phases - defined here or in builderDefs") doForceShare doPropagate]);
meta = {
description = "
${abort "Write a description"}
";
};
}