nixpkgs/pkgs/top-level/template-composing+config.nix
Michael Raskin 746d65bbdb Minor change to composing templates.
svn path=/nixpkgs/trunk/; revision=10294
2008-01-25 13:33:26 +00:00

24 lines
626 B
Nix

args : with args; let localDefs = builderDefs (args // rec {
src = /* put a fetchurl here */
(abort "Specify source");
useConfig = true;
reqsList = [
["true" ]
["false"]
];
/* List consisiting of an even number of strings; "key" "value" */
configFlags = [
];
}) null; /* null is a terminator for sumArgs */
in with localDefs;
stdenv.mkDerivation rec {
name = "${(abort "Specify name")}"+version;
builder = writeScript (name + "-builder")
(textClosure localDefs [(abort "Check phases") doMakeInstall doForceShare doPropagate]);
meta = {
description = "
${(abort "Specify description")}
";
};
}