nixpkgs/pkgs/development/interpreters/xulrunner/wrapper/default.nix
Martin Bravenboer 04767dfdd9 * Added xulrunner 1.8.0.1
* Added a basic wrapper generator for xulrunner

* Chatzilla running in xulrunner


svn path=/nixpkgs/trunk/; revision=4809
2006-02-15 02:53:01 +00:00

10 lines
198 B
Nix

{stdenv, xulrunner, application, launcher}:
stdenv.mkDerivation {
name = application.name;
builder = ./builder.sh;
inherit xulrunner launcher;
appfile = application ~ "application.ini";
}