2008-12-04 22:01:26 +01:00
|
|
|
a :
|
2008-08-14 11:25:26 +02:00
|
|
|
let
|
2008-12-04 22:01:26 +01:00
|
|
|
fetchurl = a.fetchurl;
|
2008-08-14 11:25:26 +02:00
|
|
|
|
2009-05-24 12:57:41 +02:00
|
|
|
version = a.lib.attrByPath ["version"] "" a;
|
2008-12-04 22:01:26 +01:00
|
|
|
buildInputs = with a; [
|
2008-08-14 11:25:26 +02:00
|
|
|
|
|
|
|
];
|
|
|
|
in
|
2008-03-20 16:56:17 +01:00
|
|
|
rec {
|
|
|
|
src = /* Here a fetchurl expression goes */;
|
2007-11-03 05:15:13 +01:00
|
|
|
|
2008-08-14 11:25:26 +02:00
|
|
|
inherit buildInputs;
|
2008-03-20 16:56:17 +01:00
|
|
|
configureFlags = [];
|
|
|
|
|
2008-12-04 22:01:26 +01:00
|
|
|
/* doConfigure should be removed if not needed */
|
|
|
|
phaseNames = ["doConfigure" "doMakeInstall"];
|
2008-03-20 16:56:17 +01:00
|
|
|
|
2008-08-14 11:25:26 +02:00
|
|
|
name = "${abort "Specify name"}-" + version;
|
2008-03-20 16:56:17 +01:00
|
|
|
meta = {
|
|
|
|
description = "${abort "Specify description"}";
|
2009-07-12 10:10:51 +02:00
|
|
|
maintainers = [
|
|
|
|
a.lib.maintainers.(abort "Specify maintainer")
|
|
|
|
];
|
2008-03-20 16:56:17 +01:00
|
|
|
};
|
2007-11-03 05:15:13 +01:00
|
|
|
}
|