549a4405e3
since it has full support for running XUL applications. This saves a lot of space (you don't need two copies of basically the same software). * Deleted the old xulrunner (1.8.0.4), it didn't compile anyway with recent GTK. * Updated chatzilla to 0.9.83. svn path=/nixpkgs/trunk/; revision=12794
14 lines
236 B
Nix
14 lines
236 B
Nix
{stdenv, xulrunner, application, launcher}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = application.name;
|
|
|
|
builder = ./builder.sh;
|
|
|
|
inherit xulrunner launcher;
|
|
|
|
appfile = application + "/application.ini";
|
|
|
|
inherit (application) meta;
|
|
}
|