nixpkgs/pkgs/development/interpreters/xulrunner/wrapper/default.nix
Eelco Dolstra bf1e734f85 * Don't use the subpath operator (~) anymore, it's subsumed by normal
concatenation (+).

svn path=/nixpkgs/trunk/; revision=6080
2006-08-09 15:05:30 +00:00

10 lines
197 B
Nix

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