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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5562bd8f4584
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ce111fcc26fe
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Jul 3, 2020

  1. Copy the full SHA
    2a9765e View commit details
  2. nixos/unifi: restart service on package update

    Currently the service doesn't detect if on of the packages is updated
    and doesn't restart.
    
    By manually adding a trigger we make sure the service restarts if any of
    the involved packages update.
    bachp committed Jul 3, 2020
    Copy the full SHA
    3e7d650 View commit details

Commits on Jul 11, 2020

  1. Merge pull request #92225 from bachp/unifi-5.13.32

    unifiStable: 5.13.29 -> 5.13.32
    erictapen authored Jul 11, 2020
    Copy the full SHA
    ce111fc View commit details
Showing with 4 additions and 2 deletions.
  1. +2 −0 nixos/modules/services/networking/unifi.nix
  2. +2 −2 pkgs/servers/unifi/default.nix
2 changes: 2 additions & 0 deletions nixos/modules/services/networking/unifi.nix
Original file line number Diff line number Diff line change
@@ -162,6 +162,8 @@ in
unitConfig.RequiresMountsFor = stateDir;
# This a HACK to fix missing dependencies of dynamic libs extracted from jars
environment.LD_LIBRARY_PATH = with pkgs.stdenv; "${cc.cc.lib}/lib";
# Make sure package upgrades trigger a service restart
restartTriggers = [ cfg.unifiPackage cfg.mongodbPackage ];

serviceConfig = {
Type = "simple";
4 changes: 2 additions & 2 deletions pkgs/servers/unifi/default.nix
Original file line number Diff line number Diff line change
@@ -49,7 +49,7 @@ in {
};

unifiStable = generic {
version = "5.13.29";
sha256 = "0j1spid9q41l57gyphg8smn92iy52z4x4wy236a2a15p731gllh8";
version = "5.13.32";
sha256 = "0r1lz73hn4pl5jygmmfngr8sr0iybirsqlkcdkq31a36vcr567i8";
};
}