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: 2764e7e97a3b
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: 822634681ee1
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Apr 14, 2019

  1. weechat: install all outputs into the final store path

    Resolves #59300
    
    Until now only `$out/bin/weechat` and `$out/bin/weechat-headless` were installed
    into the store path that will be used when running i.e. `nix-env -iA weechat`.
    
    Further outputs like icons (`$out/share/icons`), man pages (`$man`) or the HTML
    documentation (`$out/share/doc/weechat`) are omitted at the moment. As
    this can be fairly confusing I figured that it's better to copy those
    files into the environment as well.
    
    As `buildEnv` doesn't appear to support output splitting (you can only
    install additional outputs of `paths` using `extraOutputsToInstall`),
    it's easier for now to always install the `man` output by
    default.
    
    Man page installation can be turned off like this now:
    
    ```
    weechat.override { installManPages = false; }
    ```
    Ma27 committed Apr 14, 2019
    Copy the full SHA
    681b1d8 View commit details
    Browse the repository at this point in the history

Commits on May 24, 2019

  1. Merge pull request #59487 from Ma27/install-weechat-manpages

    weechat: install all outputs into the final store path
    Ma27 committed May 24, 2019
    Copy the full SHA
    8226346 View commit details
    Browse the repository at this point in the history