Fix "platfrom" typos

Changed files
+2 -2
doc
pkgs
development
libraries
libquotient
+1 -1
doc/stdenv/cross-compilation.chapter.md
···
Add the following to your `mkDerivation` invocation.
```nix
-
doCheck = stdenv.hostPlatform == stdenv.buildPlatfrom;
```
## Cross-building packages {#sec-cross-usage}
···
Add the following to your `mkDerivation` invocation.
```nix
+
doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
```
## Cross-building packages {#sec-cross-usage}
+1 -1
pkgs/development/libraries/libquotient/default.nix
···
nativeBuildInputs = [ cmake ];
meta = with lib; {
-
description = "A Qt5 library to write cross-platfrom clients for Matrix";
homepage = "https://matrix.org/docs/projects/sdk/quotient";
license = licenses.lgpl21;
maintainers = with maintainers; [ colemickens ];
···
nativeBuildInputs = [ cmake ];
meta = with lib; {
+
description = "A Qt5 library to write cross-platform clients for Matrix";
homepage = "https://matrix.org/docs/projects/sdk/quotient";
license = licenses.lgpl21;
maintainers = with maintainers; [ colemickens ];