mirror of
https://github.com/nix-community/dream2nix.git
synced 2025-01-07 15:20:07 +03:00
Fixed silly parentheses mistake
This commit is contained in:
parent
6425c92f65
commit
8215405fb4
@ -103,25 +103,25 @@ in {
|
|||||||
};
|
};
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
|
||||||
|
|
||||||
inject = mkOption {
|
inject = mkOption {
|
||||||
default = {};
|
default = {};
|
||||||
type = t.lazyAttrsOf (t.listOf (t.listOf t.str));
|
type = t.lazyAttrsOf (t.listOf (t.listOf t.str));
|
||||||
description = "Inject missing dependencies into the dependency tree"; # TODO(antotocar34) find a suitable description
|
description = "Inject missing dependencies into the dependency tree"; # TODO(antotocar34) find a suitable description
|
||||||
example =
|
example =
|
||||||
l.literalExpression
|
l.literalExpression
|
||||||
# TODO(DavHau) don't require specifying the version here. This will break as soon as the dependencies get updated
|
# TODO(DavHau) don't require specifying the version here. This will break as soon as the dependencies get updated
|
||||||
''
|
''
|
||||||
{
|
{
|
||||||
foo."6.4.1" = [
|
foo."6.4.1" = [
|
||||||
["bar" "13.2.0"]
|
["bar" "13.2.0"]
|
||||||
["baz" "1.0.0"]
|
["baz" "1.0.0"]
|
||||||
];
|
];
|
||||||
"@tiptap/extension-code"."2.0.0-beta.26" = [
|
"@tiptap/extension-code"."2.0.0-beta.26" = [
|
||||||
["@tiptap/core" "2.0.0-beta.174"]
|
["@tiptap/core" "2.0.0-beta.174"]
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
'';
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user