nixpkgs/pkgs/applications/networking/browsers/firefox-wrapper/default.nix

10 lines
131 B
Nix
Raw Normal View History

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