We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
allowUnfree
1 parent 796ace6 commit 0b4a4e8Copy full SHA for 0b4a4e8
docs/pkgs.nix
@@ -3,14 +3,6 @@
3
nixpkgs,
4
}:
5
let
6
- # FIXME:
7
- # Building the docs evaluates many package-option defaults, some of which are unfree.
8
- # This usually happens when we include the package option value in another option's default without
9
- # using a literalExpression defaultText.
10
- config = {
11
- allowUnfree = true;
12
- };
13
-
14
# Extend nixpkg's lib, so that we can handle recursive leaf types such as `either`
15
libOverlay = final: prev: {
16
types = prev.types // {
@@ -46,6 +38,6 @@ let
46
38
47
39
in
48
40
import nixpkgs {
49
- inherit config system;
41
+ inherit system;
50
42
overlays = [ overlay ];
51
43
}
0 commit comments