nixpkgs/pkgs/development/interpreters/xulrunner/wrapper/default.nix
Eelco Dolstra 549a4405e3 * xulrunner-wrapper: use Firefox 3 directly (via "firefox -app"),
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
2008-09-04 09:29:09 +00:00

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;
}