1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00
nixpkgs/pkgs/development/interpreters/xulrunner/wrapper/default.nix

14 lines
236 B
Nix
Raw Normal View History

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