* Don't use the subpath operator (~) anymore, it's subsumed by normal
concatenation (+). svn path=/nixpkgs/trunk/; revision=6080
This commit is contained in:
@@ -10,7 +10,7 @@ stdenv.mkDerivation {
|
||||
|
||||
# Let each plugin tell us (through its `mozillaPlugin') attribute
|
||||
# where to find the plugin in its tree.
|
||||
plugins = map (x: x ~ x.mozillaPlugin) plugins;
|
||||
plugins = map (x: x + x.mozillaPlugin) plugins;
|
||||
|
||||
meta = {
|
||||
description = firefox.meta.description + " (with various plugins)";
|
||||
|
||||
Reference in New Issue
Block a user