2009-08-24 23:35:45 +02:00
|
|
|
a :
|
|
|
|
let
|
2009-08-26 13:13:36 +02:00
|
|
|
s = import ./src-for-default.nix;
|
2009-08-24 23:35:45 +02:00
|
|
|
buildInputs = with a; [
|
|
|
|
|
|
|
|
];
|
|
|
|
in
|
|
|
|
rec {
|
2009-08-26 13:13:36 +02:00
|
|
|
src = a.fetchUrlFromSrcInfo s;
|
2009-08-24 23:35:45 +02:00
|
|
|
|
2009-08-26 13:13:36 +02:00
|
|
|
inherit (s) name;
|
2009-08-24 23:35:45 +02:00
|
|
|
inherit buildInputs;
|
|
|
|
configureFlags = [];
|
|
|
|
|
|
|
|
/* doConfigure should be removed if not needed */
|
|
|
|
phaseNames = ["doConfigure" "doMakeInstall"];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "${abort "Specify description"}";
|
|
|
|
maintainers = [
|
|
|
|
a.lib.maintainers.(abort "Specify maintainer")
|
|
|
|
];
|
2009-09-01 22:12:01 +02:00
|
|
|
platforms = with a.lib.platforms;
|
|
|
|
(abort "Specify supported platforms");
|
2009-08-24 23:35:45 +02:00
|
|
|
};
|
|
|
|
}
|