nixpkgs/pkgs/top-level/template-composing-builder.nix
Michael Raskin 3ef5e62b2f Some fixes to CompizFusion. With proper ~-setup works now.
svn path=/nixpkgs/trunk/; revision=9585
2007-11-05 16:07:35 +00:00

18 lines
463 B
Nix

args : with args;
with builderDefs {
src = /* put a fetchurl here */
buildInputs = [];
configureFlags = [];
} null; /* null is a terminator for sumArgs */
with stringsWithDeps;
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"}
";
};
}