10 lines
131 B
Nix
10 lines
131 B
Nix
|
{stdenv, firefox, plugins}:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = firefox.name;
|
||
|
|
||
|
builder = ./builder.sh;
|
||
|
|
||
|
inherit firefox plugins;
|
||
|
}
|