c233d6f67c
MPlayer plugin). svn path=/nixpkgs/trunk/; revision=1565
10 lines
131 B
Nix
10 lines
131 B
Nix
{stdenv, firefox, plugins}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = firefox.name;
|
|
|
|
builder = ./builder.sh;
|
|
|
|
inherit firefox plugins;
|
|
}
|