nixpkgs/pkgs/top-level/template-composing-builder.nix
Michael Raskin 203f2f8809 Added aria - metalink/http/ftp/bittorrent supporting downloader
svn path=/nixpkgs/trunk/; revision=12175
2008-06-21 20:53:52 +00:00

17 lines
375 B
Nix

args : with args;
let version = lib.getAttr ["version"] "" args; in
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"}";
};
}