diff options
| author | Robert Hensing <roberth@users.noreply.github.com> | 2020-08-16 10:10:20 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-16 10:10:20 +0200 |
| commit | e7dc692e3bfae34605782eda454832222037af22 (patch) | |
| tree | 52c0373ed61105394eebb522b161c4451523c362 | |
| parent | Merge pull request #85330 from chkno/openmvg (diff) | |
| download | nixpkgs-origin/fix-nixos-crossSystem-default-doc.tar.gz | |
nixos/nixpkgs.nix: Correct crossSystem default literalorigin/fix-nixos-crossSystem-default-doc
The default is null and the documentation should reflect that.
| -rw-r--r-- | nixos/modules/misc/nixpkgs.nix | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/nixos/modules/misc/nixpkgs.nix b/nixos/modules/misc/nixpkgs.nix index 4f5a9250eaae..25ac94b8e0f6 100644 --- a/nixos/modules/misc/nixpkgs.nix +++ b/nixos/modules/misc/nixpkgs.nix @@ -178,8 +178,6 @@ in type = types.nullOr types.attrs; # TODO utilize lib.systems.parsedPlatform default = null; example = { system = "aarch64-linux"; config = "aarch64-unknown-linux-gnu"; }; - defaultText = literalExample - ''(import "''${nixos}/../lib").lib.systems.examples.aarch64-multiplatform''; description = '' Specifies the platform for which NixOS should be built. Specify this only if it is different from |
