Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8a7b4ccd1fb0
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ac8d85087811
Choose a head ref

Commits on Oct 18, 2019

  1. openconnect: Add darwin support

    The old build was failing on darwin because yubikey needs the PCSC framework dependency. I also upgraded to the latest vpnc-script as recommended on the openconnect homepage (see: https://www.infradead.org/openconnect/platforms.html). Lastly, I moved all dependencies which are not used at runtime from propagatedBuildInputs to buildInputs (Please correct me if that is wrong).
    Thibault Gagnaux committed Oct 18, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    ncfavier Naïm Camille Favier
    Copy the full SHA
    43a761d View commit details

Commits on Oct 31, 2019

  1. nixos/dnsdist: Add CAP_NET_BIND_SERVICE to AmbientCapabilities

    It seems that dnsdist doesn't actually request CAP_NET_BIND_SERVICE, which is why normally it's executed and root and setuids to another, unprivileged, user. This means that as it is, dnsdist will be unable to bind to any port under 1024 and will fail with access denied.
    
    Removing CAP_SETGID and CAP_SETUID is also related to this as we don't actually change the uid or gid after the fact as we use DynamicUser. (That part isn't strictly NEEDED but there's no reason to have those capabilities if we don't use them).
    
    There are also some additional sandboxing we can remove from the service definition as they are assumed true or strict by DynamicUser: specifically PrivateTmp and ProtectSystem respectively.
    
    ProtectHome is still there, despite being assumed read-only as setting it to true means they are seen as empty. I don't think it really matters as I don't know if systemd will ignore it or not, but I didn't see any reason to go hunting for excuses to make it a bigger change.
    ShaRose committed Oct 31, 2019
    Copy the full SHA
    9e2308e View commit details

Commits on Nov 7, 2019

  1. maintainers: add filalex77

    Br1ght0ne committed Nov 7, 2019
    Copy the full SHA
    8e53c16 View commit details
  2. ruplacer: init at 0.4.1

    Br1ght0ne committed Nov 7, 2019
    Copy the full SHA
    8bb7737 View commit details
  3. gnome3.geary: add patch for longer client test timeout

    I'm see this test timout frequently, most often on aarch64 on hydra.
    Patch is from debian, which probably noticed the same issue.
    worldofpeace committed Nov 7, 2019
    Copy the full SHA
    3c0b03a View commit details

Commits on Nov 8, 2019

  1. libco-canonical: fix pkgconfig includedir

    Patched Makefile so that includedir correctly points to "dev" output
    instead of "out" output.
    lodi committed Nov 8, 2019
    Copy the full SHA
    32497cf View commit details
  2. Removes vpnc from propagated build inputs

    Thibault Gagnaux committed Nov 8, 2019
    Copy the full SHA
    c12850a View commit details
  3. nixos/redis: fix merging

    NixOS/nixpkgs#71584 did merging without mkMerge.
    
    cc @jtojnar
    flokli committed Nov 8, 2019
    Copy the full SHA
    6303131 View commit details
  4. Copy the full SHA
    24b540d View commit details
  5. nixos/smokeping: port test to python

    cc #72828
    flokli committed Nov 8, 2019
    Copy the full SHA
    85bf23b View commit details
  6. Copy the full SHA
    b0e0815 View commit details
  7. Copy the full SHA
    4b496a3 View commit details
  8. Copy the full SHA
    7251680 View commit details
  9. Copy the full SHA
    26acc9e View commit details
  10. Revert "mu: 1.2 -> 1.3.3"

    This reverts commits 53a536c
    and af931c1.
    
    The repology.org info was incorrect, pulling in a development version
    of mu as a release. The current (stable) release of mu is still 1.2:
    https://github.com/djcb/mu/releases
    yurkobb committed Nov 8, 2019
    Copy the full SHA
    b220d3e View commit details
  11. Merge pull request #71318 from tricktron/fixOpenConnectOnCatalina

    openconnect: Add darwin support
    LnL7 authored Nov 8, 2019
    Copy the full SHA
    7fb0d95 View commit details
  12. Merge pull request #73020 from lodi/libco

    libco-canonical: fix pkgconfig includedir
    matthewbauer authored Nov 8, 2019
    Copy the full SHA
    85a94a2 View commit details
  13. Merge pull request #72998 from worldofpeace/client-tests-geary

    gnome3.geary: add patch for longer client test timeout
    worldofpeace authored Nov 8, 2019
    Copy the full SHA
    b859c85 View commit details
  14. Merge pull request #73056 from flokli/nixos-test-port-pppd

    nixos/pppd: port test to python
    worldofpeace authored Nov 8, 2019
    Copy the full SHA
    0c6853c View commit details
  15. Merge pull request #73057 from flokli/nixos-test-port-smokeping

    nixos/smokeping: port test to python
    worldofpeace authored Nov 8, 2019
    Copy the full SHA
    9cc610c View commit details
  16. Merge pull request #73060 from flokli/nixos-test-port-powerdns

    nixos/powerdns: port test to python
    worldofpeace authored Nov 8, 2019
    Copy the full SHA
    1d3da3b View commit details
  17. Merge pull request #73049 from flokli/fix-redis-merge

    nixos/redis: fix merging
    flokli authored Nov 8, 2019
    Copy the full SHA
    cced569 View commit details
  18. Merge pull request #73067 from yurkobb/fix-mu-stable

    Fix mu version from unreleased to stable (revert to 1.2)
    ryantm authored Nov 8, 2019
    Copy the full SHA
    54b0476 View commit details
  19. Merge pull request #73063 from minijackson/shiori-things

    shiori: update modSha256, update test to python, do more tests
    flokli authored Nov 8, 2019
    Copy the full SHA
    3928e7f View commit details
  20. Merge pull request #71576 from ShaRose/patch-1

    nixos/dnsdist: Add CAP_NET_BIND_SERVICE to AmbientCapabilities
    infinisil authored Nov 8, 2019
    Copy the full SHA
    3022fde View commit details
  21. Merge pull request #72971 from filalex77/ruplacer-0.4.1

    ruplacer: init at 0.4.1
    c0bw3b authored Nov 8, 2019
    Copy the full SHA
    ac8d850 View commit details
Loading