nixpkgs/pkgs/applications/networking/browsers/firefox-wrapper/default.nix
Eelco Dolstra c233d6f67c * Wrapper around Firefox to add some default plugins (currently, the
MPlayer plugin).

svn path=/nixpkgs/trunk/; revision=1565
2004-10-17 13:28:28 +00:00

10 lines
131 B
Nix

{stdenv, firefox, plugins}:
stdenv.mkDerivation {
name = firefox.name;
builder = ./builder.sh;
inherit firefox plugins;
}