nixpkgs/pkgs/top-level/template-composing-builder.nix
Michael Raskin 71fe97475a Updated template for composing builder
svn path=/nixpkgs/trunk/; revision=11237
2008-03-20 15:56:17 +00:00

16 lines
325 B
Nix

args : with args;
rec {
src = /* Here a fetchurl expression goes */;
buildInputs = [];
configureFlags = [];
/* doConfigure should be specified separately */
phaseNames = ["doMakeInstall"];
name = "${abort "Specify name"}" + version;
meta = {
description = "${abort "Specify description"}";
};
}