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