2006-02-14 18:53:01 -08:00
|
|
|
{stdenv, xulrunner, application, launcher}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = application.name;
|
|
|
|
|
|
|
|
builder = ./builder.sh;
|
|
|
|
inherit xulrunner launcher;
|
2006-10-17 07:06:18 -07:00
|
|
|
appfile = application + "/application.ini";
|
2006-10-11 09:45:55 -07:00
|
|
|
|
|
|
|
inherit (application) meta;
|
2006-02-14 18:53:01 -08:00
|
|
|
}
|