71fe97475a
svn path=/nixpkgs/trunk/; revision=11237
16 lines
325 B
Nix
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"}";
|
|
};
|
|
}
|