summary refs log tree commit diff
path: root/doc/package-notes.xml
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2018-08-27 19:54:41 -0400
committerGraham Christensen <graham@grahamc.com>2018-08-27 19:54:41 -0400
commit360f420ac7df37e8987473f49e00175ef70732b8 (patch)
tree19e33a0b869bfec1901d81010d5c6bf22d5dff5a /doc/package-notes.xml
parent53371b15c6f287b627e1255bb21d54e123e1f96f (diff)
downloadnixlib-360f420ac7df37e8987473f49e00175ef70732b8.tar
nixlib-360f420ac7df37e8987473f49e00175ef70732b8.tar.gz
nixlib-360f420ac7df37e8987473f49e00175ef70732b8.tar.bz2
nixlib-360f420ac7df37e8987473f49e00175ef70732b8.tar.lz
nixlib-360f420ac7df37e8987473f49e00175ef70732b8.tar.xz
nixlib-360f420ac7df37e8987473f49e00175ef70732b8.tar.zst
nixlib-360f420ac7df37e8987473f49e00175ef70732b8.zip
nixpkgs docs: normalize
Diffstat (limited to 'doc/package-notes.xml')
-rw-r--r--doc/package-notes.xml48
1 files changed, 29 insertions, 19 deletions
diff --git a/doc/package-notes.xml b/doc/package-notes.xml
index 0634432fe95a..8c7c63c8c8d7 100644
--- a/doc/package-notes.xml
+++ b/doc/package-notes.xml
@@ -709,40 +709,50 @@ overrides = super: self: rec {
   <title>Citrix Receiver</title>
 
   <para>
-   The <link xlink:href="https://www.citrix.com/products/receiver/">Citrix Receiver</link> is a remote
-   desktop viewer which provides access to
-   <link xlink:href="https://www.citrix.com/products/xenapp-xendesktop/">XenDesktop</link> installations.
+   The <link xlink:href="https://www.citrix.com/products/receiver/">Citrix
+   Receiver</link> is a remote desktop viewer which provides access to
+   <link xlink:href="https://www.citrix.com/products/xenapp-xendesktop/">XenDesktop</link>
+   installations.
   </para>
 
   <section xml:id="sec-citrix-base">
    <title>Basic usage</title>
+
    <para>
-    The tarball archive needs to be downloaded manually as the licenses agreements of the vendor
-    need to be accepted first. This is available at the
-    <link xlink:href="https://www.citrix.com/downloads/citrix-receiver/">download page at citrix.com</link>.
-    Then run <literal>nix-prefetch-url file://$PWD/linuxx64-$version.tar.gz</literal>.
-    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 licenses
+    agreements of the vendor need to be accepted first. This is available at
+    the
+    <link xlink:href="https://www.citrix.com/downloads/citrix-receiver/">download
+    page at citrix.com</link>. Then run <literal>nix-prefetch-url
+    file://$PWD/linuxx64-$version.tar.gz</literal>. With the archive available
+    in the store the package can be built and installed with Nix.
    </para>
 
    <para>
-    <emphasis>Note: it's recommended to install <literal>Citrix Receiver</literal> using
-    <literal>nix-env -i</literal> or globally to ensure that the <literal>.desktop</literal> files
-    are installed properly into <literal>$XDG_CONFIG_DIRS</literal>. Otherwise it won't
-    be possible to open <literal>.ica</literal> files
-    automatically from the browser to start a Citrix connection.</emphasis>
+    <emphasis>Note: it's recommended to install <literal>Citrix
+    Receiver</literal> using <literal>nix-env -i</literal> or globally to
+    ensure that the <literal>.desktop</literal> files are installed properly
+    into <literal>$XDG_CONFIG_DIRS</literal>. Otherwise it won't be possible to
+    open <literal>.ica</literal> files automatically from the browser to start
+    a Citrix connection.</emphasis>
    </para>
   </section>
+
   <section xml:id="sec-citrix-custom-certs">
    <title>Custom certificates</title>
+
    <para>
-    The <literal>Citrix Receiver</literal> in <literal>nixpkgs</literal> trusts several certificates
-    <link xlink:href="https://curl.haxx.se/docs/caextract.html">from the Mozilla database</link> by default.
-    However several companies using Citrix might require their own corporate certificate. On distros with imperative
+    The <literal>Citrix Receiver</literal> in <literal>nixpkgs</literal> trusts
+    several certificates
+    <link xlink:href="https://curl.haxx.se/docs/caextract.html">from the
+    Mozilla database</link> 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
     <link xlink:href="https://developer-docs.citrix.com/projects/receiver-for-linux-command-reference/en/13.7/"><literal>$ICAROOT</literal></link>,
-    however this directory is a store path in <literal>nixpkgs</literal>. In order to work around this issue the package provides a simple
-    mechanism to add custom certificates without rebuilding the entire package using <literal>symlinkJoin</literal>:
-
+    however this directory is a store path in <literal>nixpkgs</literal>. In
+    order to work around this issue the package provides a simple mechanism to
+    add custom certificates without rebuilding the entire package using
+    <literal>symlinkJoin</literal>:
 <programlisting>
 <![CDATA[with import <nixpkgs> { config.allowUnfree = true; };
 let extraCerts = [ ./custom-cert-1.pem ./custom-cert-2.pem /* ... */ ]; in