summary refs log tree commit diff
path: root/doc/builders/packages/citrix.section.md
diff options
context:
space:
mode:
authorMartino Fontana <tinozzo123@tutanota.com>2022-03-10 20:43:29 +0100
committerMartino Fontana <tinozzo123@tutanota.com>2022-03-10 20:43:29 +0100
commit93d624a49aa7b616ab6a737b30ae13b4ce073909 (patch)
tree2df789c5fdacc99ce161ceaaa1bdf2a661903717 /doc/builders/packages/citrix.section.md
parent29d32d480c50ebcf95ed5117c881ca2717f633b4 (diff)
downloadnixpkgs-93d624a49aa7b616ab6a737b30ae13b4ce073909.tar
nixpkgs-93d624a49aa7b616ab6a737b30ae13b4ce073909.tar.gz
nixpkgs-93d624a49aa7b616ab6a737b30ae13b4ce073909.tar.bz2
nixpkgs-93d624a49aa7b616ab6a737b30ae13b4ce073909.tar.lz
nixpkgs-93d624a49aa7b616ab6a737b30ae13b4ce073909.tar.xz
nixpkgs-93d624a49aa7b616ab6a737b30ae13b4ce073909.tar.zst
nixpkgs-93d624a49aa7b616ab6a737b30ae13b4ce073909.zip
doc/builders: fix typos
Diffstat (limited to 'doc/builders/packages/citrix.section.md')
-rw-r--r--doc/builders/packages/citrix.section.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/builders/packages/citrix.section.md b/doc/builders/packages/citrix.section.md
index b25ecb0bdef..4721f7e90f7 100644
--- a/doc/builders/packages/citrix.section.md
+++ b/doc/builders/packages/citrix.section.md
@@ -4,13 +4,13 @@ The [Citrix Workspace App](https://www.citrix.com/products/workspace-app/) is a
 
 ## Basic usage {#sec-citrix-base}
 
-The tarball archive needs to be downloaded manually as the license agreements of the vendor for [Citrix Workspace](https://www.citrix.de/downloads/workspace-app/linux/workspace-app-for-linux-latest.html) needs to be accepted first. Then run `nix-prefetch-url file://$PWD/linuxx64-$version.tar.gz`. With the archive available in the store the package can be built and installed with Nix.
+The tarball archive needs to be downloaded manually, as the license agreements of the vendor for [Citrix Workspace](https://www.citrix.de/downloads/workspace-app/linux/workspace-app-for-linux-latest.html) needs to be accepted first. Then run `nix-prefetch-url file://$PWD/linuxx64-$version.tar.gz`. With the archive available in the store, the package can be built and installed with Nix.
 
-## Citrix Selfservice {#sec-citrix-selfservice}
+## Citrix Self-service {#sec-citrix-selfservice}
 
-The [selfservice](https://support.citrix.com/article/CTX200337) is an application managing Citrix desktops and applications. Please note that this feature only works with at least citrix_workspace_20_06_0 and later versions.
+The [self-service](https://support.citrix.com/article/CTX200337) is an application managing Citrix desktops and applications. Please note that this feature only works with at least citrix_workspace_20_06_0 and later versions.
 
-In order to set this up, you first have to [download the `.cr` file from the Netscaler Gateway](https://its.uiowa.edu/support/article/102186). After that you can configure the `selfservice` like this:
+In order to set this up, you first have to [download the `.cr` file from the Netscaler Gateway](https://its.uiowa.edu/support/article/102186). After that, you can configure the `selfservice` like this:
 
 ```ShellSession
 $ storebrowse -C ~/Downloads/receiverconfig.cr
@@ -19,7 +19,7 @@ $ selfservice
 
 ## Custom certificates {#sec-citrix-custom-certs}
 
-The `Citrix Workspace App` in `nixpkgs` trusts several certificates [from the Mozilla database](https://curl.haxx.se/docs/caextract.html) by default. However several companies using Citrix might require their own corporate certificate. On distros with imperative packaging these certs can be stored easily in [`$ICAROOT`](https://developer-docs.citrix.com/projects/receiver-for-linux-command-reference/en/13.7/), however this directory is a store path in `nixpkgs`. In order to work around this issue the package provides a simple mechanism to add custom certificates without rebuilding the entire package using `symlinkJoin`:
+The `Citrix Workspace App` in `nixpkgs` trusts several certificates [from the Mozilla database](https://curl.haxx.se/docs/caextract.html) by default. However, several companies using Citrix might require their own corporate certificate. On distros with imperative packaging, these certs can be stored easily in [`$ICAROOT`](https://developer-docs.citrix.com/projects/receiver-for-linux-command-reference/en/13.7/), however this directory is a store path in `nixpkgs`. In order to work around this issue, the package provides a simple mechanism to add custom certificates without rebuilding the entire package using `symlinkJoin`:
 
 ```nix
 with import <nixpkgs> { config.allowUnfree = true; };