mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
Merge branch 'wrapper-pname-support-19.09' into wrapper-pname-support
This commit is contained in:
commit
51991e9606
|
@ -216,7 +216,7 @@
|
|||
The following configuration example only allows insecure packages with very short names:
|
||||
<programlisting>
|
||||
{
|
||||
allowInsecurePredicate = (pkg: (builtins.stringLength (lib.getName pkg) <= 5);
|
||||
allowInsecurePredicate = pkg: builtins.stringLength (lib.getName pkg) <= 5;
|
||||
}
|
||||
</programlisting>
|
||||
</para>
|
||||
|
|
Loading…
Reference in a new issue