99f35b7435
svn path=/nixpkgs/trunk/; revision=10249
20 lines
527 B
Nix
20 lines
527 B
Nix
args : with args; with builderDefs {src="";} null;
|
|
let localDefs = builderDefs {
|
|
src = /* put a fetchurl here */
|
|
|
|
buildInputs = [];
|
|
configureFlags = [];
|
|
} 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 "Specify phases - defined here or in builderDefs") doForceShare doPropagate]);
|
|
meta = {
|
|
description = "
|
|
${abort "Write a description"}
|
|
";
|
|
};
|
|
}
|