2004-10-17 15:28:28 +02:00
|
|
|
{stdenv, firefox, plugins}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = firefox.name;
|
|
|
|
|
|
|
|
builder = ./builder.sh;
|
2005-02-16 12:13:18 +01:00
|
|
|
makeWrapper = ../../../../build-support/make-wrapper/make-wrapper.sh;
|
2004-10-17 15:28:28 +02:00
|
|
|
|
2005-02-16 12:24:40 +01:00
|
|
|
inherit firefox;
|
|
|
|
|
|
|
|
# Let each plugin tell us (through its `mozillaPlugin') attribute
|
|
|
|
# where to find the plugin in its tree.
|
|
|
|
plugins = map (x: x ~ x.mozillaPlugin) plugins;
|
2006-03-10 17:12:46 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = firefox.meta.description + " (with various plugins)";
|
|
|
|
};
|
2004-10-17 15:28:28 +02:00
|
|
|
}
|