Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
base: 3a609282a7f2
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: 893b080e5628
Choose a head ref
  • 3 commits
  • 3 files changed
  • 2 contributors

Commits on Aug 6, 2018

  1. citrix_receiver: allow custom certs and hooks for the installation

    Sometimes it's required to modify some parts of the Citrix build on
    their own which is why `{pre,post}Install` hooks can be quite helpful.
    
    Additionally some corporate clients use their own certificates that
    aren't stored as trusted ones in the `cacert` package with all of the
    trusted certs by Mozilla.
    
    Now it's possible to add custom certs like this:
    
    ``` nix
    with import <nixpkgs> { config.allowUnfree = true; };
    
    let path = ../../Downloads/custom-corporate-cert.pem; in
    citrix_receiver.override {
      extraCerts = [ path ];
    }
    ```
    Ma27 committed Aug 6, 2018
    Configuration menu
    Copy the full SHA
    10b2208 View commit details
    Browse the repository at this point in the history
  2. citrix_receiver: drop all packages below 13.8

    All Citrix versions until 13.7 will be EOLed during the lifetime of
    18.09: https://www.citrix.co.uk/support/product-lifecycle/milestones/receiver.html
    Ma27 committed Aug 6, 2018
    Configuration menu
    Copy the full SHA
    3d7b147 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2018

  1. Merge pull request #44522 from Ma27/allow-citrix-custom-certs

    citrix_receiver: allow custom certs and hooks for the installation
    Mic92 committed Aug 7, 2018
    Configuration menu
    Copy the full SHA
    893b080 View commit details
    Browse the repository at this point in the history