239587 Commits

Author SHA1 Message Date
Yan Su
de127352c4 zulu8: 8.28.0.1 -> 8.48.0.53 2020-08-11 17:18:30 +09:00
R. RyanTM
423561ddbd navidrome: 0.27.0 -> 0.29.0 2020-08-11 08:16:58 +00:00
R. RyanTM
ec9a0084ec namecoin: nc0.20.0 -> nc0.20.1 2020-08-11 08:04:00 +00:00
Linus Heckemann
eac5ef8aa9
Merge pull request #95145 from samuelgrf/update/pcsx2-1.6.0
pcsx2: 1.6.0-rc -> 1.6.0
2020-08-11 09:55:18 +02:00
R. RyanTM
354642d72b mu: 1.4.12 -> 1.4.13 2020-08-11 07:53:57 +00:00
lewo
60d2ac5725
Merge pull request #94890 from lucperkins/opa-update
open-policy-agent: 0.15.0 -> 0.22.0
2020-08-11 09:49:38 +02:00
R. RyanTM
1126ae66eb miller: 5.7.0 -> 5.8.0 2020-08-11 07:27:59 +00:00
Daniël de Kok
f9eba87bf0
Merge pull request #95083 from danieldk/manual-amd-blis
manual: add AMD BLIS/LIBFLAME to the BLAS/LAPACK list
2020-08-11 08:56:31 +02:00
Samuel Gräfenstein
bdf347956d
pcsx2: 1.6.0-rc -> 1.6.0 2020-08-11 08:55:15 +02:00
Matt Huszagh
93e5e9e22d appcsxcad: init at unstable-2020-01-04 2020-08-10 23:45:59 -07:00
Matt Huszagh
7dc7e2e7b8 qcsxcad: use libsForQt5 package scope for qt deps 2020-08-10 23:45:30 -07:00
R. RyanTM
e434584ae4 mgba: 0.8.2 -> 0.8.3 2020-08-11 06:40:27 +00:00
Bruno Bigras
161ae49020 kopia: 0.5.2 -> 0.6.0 2020-08-11 02:29:38 -04:00
R. RyanTM
d0ef3538cf limesuite: 20.07.1 -> 20.07.2 2020-08-11 06:10:54 +00:00
Daniël de Kok
3ef28abf90
Merge pull request #94985 from wedens/tdrop-version-bump
tdrop: 2018-11-13 -> 2020-05-14
2020-08-11 07:55:06 +02:00
Matt Huszagh
2c71cf337a python3Packages.kinparse: init at unstable-2019-12-18 2020-08-10 22:45:54 -07:00
R. RyanTM
2097c213d1 libmaxminddb: 1.4.2 -> 1.4.3 2020-08-11 05:35:07 +00:00
Silvan Mosberger
f21c42143b
Merge pull request #48740 from midchildan/add-mirakurun
mirakurun: init at 3.3.0
2020-08-11 06:55:56 +02:00
worldofpeace
c1c96de9e7
Merge pull request #95137 from Mic92/nix-prefetch
nix-prefetch: make fit for flakes
2020-08-11 00:53:04 -04:00
midchildan
3c951a6e93
video/mirakurun: add module 2020-08-11 13:52:17 +09:00
Orivej Desh
48ef8562f2
musescore: 3.4.2 -> 3.5.0 (#95078) 2020-08-11 04:43:42 +00:00
R. RyanTM
20d4fd08b9 kmon: 1.3.5 -> 1.4.0 2020-08-11 04:42:03 +00:00
Matt Huszagh
dad6b637c2 qcsxcad: init at unstable-2020-01-04 2020-08-10 21:39:57 -07:00
Jörg Thalheim
346874b79e
nix-prefetch: make fit for flakes 2020-08-11 05:38:37 +01:00
R. RyanTM
d9ea518b95 jx: 2.1.121 -> 2.1.127 2020-08-11 04:32:16 +00:00
R. RyanTM
2325e4851d istioctl: 1.6.6 -> 1.6.7 2020-08-11 04:06:43 +00:00
R. RyanTM
c2d1888e89 irqbalance: 1.6.0 -> 1.7.0 2020-08-11 03:57:07 +00:00
Robert K. Bell
d5adbd40b4
jetbrains: update
Used ./update.pl, no other changes.
2020-08-11 13:48:15 +10:00
Jörg Thalheim
d6a445fe82
Merge pull request #95126 from zowoq/rm-actions
.github/workflows: disable
2020-08-11 04:28:16 +01:00
Aaron Janse
eb970b6241 mkDerivation: handle Redox in cmakeFlags 2020-08-10 19:52:54 -07:00
zowoq
cde25fe625 .github/workflows: disable 2020-08-11 12:24:21 +10:00
Benjamin Hipple
0ea35cf25c
Merge pull request #95118 from drewrisinger/dr-pr-reno
reno: 2.3.2 -> 3.1.0
2020-08-10 22:19:07 -04:00
Kurt Robert Rudolph
c54beb953d nixos/xmonad: Fix behavior of config opt
Prior to this change, the `config` option (which allows you define the
haskell configuration for xmonad in your configuration.nix instead of
needing something in the home directory) prevents desktop manager
resources from starting. This can be demonstrated by configuring the
following:

```
  services.xserver = {
    displayManager.defaultSession = "xfce+xmonad";
    displayManager.lightdm.enable = true;

    desktopManager.xterm.enable = false;
    desktopManager.xfce.enable = true;
    desktopManager.xfce.enableXfwm = false;
    desktopManager.xfce.noDesktop = true;

    windowManager.xmonad = {
      enable = true;
      enableContribAndExtras = true;
      extraPackages = haskellPackages: [
        haskellPackages.xmonad-contrib
        haskellPackages.xmonad-extras
        haskellPackages.xmonad
      ];
      config = ''
        import XMonad
        import XMonad.Config.Xfce
        main = xmonad xfceConfig
               { terminal = "terminator"
               , modMask = mod4Mask }
      '';
    };
  };
```

and after user log in, search for xfce processes `ps aux | grep xfce`.
You will not find xfce processes running until after the xmonad process is killed.

The bug prevents utilities included with the desktopManager,
(e.g. powerManagement, session logout, etc.)
from working as expected.
2020-08-10 19:17:54 -07:00
Benjamin Hipple
d4bbe9a3ed
Merge pull request #95085 from alexarice/agda-prelude-update
agda-prelude: compat-2.6.0 -> compat-2.6.1
2020-08-10 21:19:27 -04:00
Mario Rodas
ae76d7cd25
Merge pull request #95051 from r-ryantm/auto-update/exoscale-cli
exoscale-cli: 1.15.0 -> 1.16.0
2020-08-10 19:51:33 -05:00
Peter Simons
bb8c74439a hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.15.5-13-g52041eb from Hackage revision
5fc79fb5dc.
2020-08-11 02:30:28 +02:00
Drew Risinger
ccb6b07c89 reno: 2.3.2 -> 3.1.0
Fix execution, and upgrade to latest version.
2020-08-10 19:55:40 -04:00
Anders Kaseorg
b31e4a20a4 pypy, pypy3: 7.1.1 -> 7.3.1
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
2020-08-10 15:42:42 -07:00
Anders Kaseorg
6f2ec6d967 pythonInterpreters.pypy{27,36}_prebuilt: 7.1.1 -> 7.3.1
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
2020-08-10 15:42:42 -07:00
Niklas Hambüchen
388076f985
Merge pull request #94205 from nh2/ilmbase-non-glibc-fpstate
openexr, ilmbase: Fix compilation on non-glibc.
2020-08-11 00:39:00 +02:00
Silvan Mosberger
b8e21e1d75
Merge pull request #95038 from r-ryantm/auto-update/dijo
dijo: 0.2.2 -> 0.2.3
2020-08-10 23:38:09 +02:00
Michael Weiss
edb0920697
chromium: 84.0.4147.105 -> 84.0.4147.125
https://chromereleases.googleblog.com/2020/08/stable-channel-update-for-desktop.html

This update includes 15 security fixes.

CVEs:
CVE-2020-6542 CVE-2020-6543 CVE-2020-6544 CVE-2020-6545 CVE-2020-6546
CVE-2020-6547 CVE-2020-6548 CVE-2020-6549 CVE-2020-6550 CVE-2020-6551
CVE-2020-6552 CVE-2020-6553 CVE-2020-6554 CVE-2020-6555
2020-08-10 23:37:23 +02:00
Maximilian Bosch
5428974aa3
Merge pull request #95101 from etu/php72-drop-support
php: Drop PHP 7.2 support
2020-08-10 23:35:20 +02:00
Maximilian Bosch
7b1b874e61
Merge pull request #95108 from asbachb/update/roundcube
roundcube: 1.4.7 -> 1.4.8
2020-08-10 23:17:36 +02:00
Ryan Mulligan
372735e88e
Merge pull request #95075 from r-ryantm/auto-update/hcxdumptool
hcxdumptool: 6.1.0 -> 6.1.1
2020-08-10 13:29:47 -07:00
Elis Hirwing
6be7d1c176
php: Drop PHP 7.2 support 2020-08-10 22:28:12 +02:00
Maximilian Bosch
dd957c2cb7
nixos/nextcloud: add documentation for alternative reverse-proxies
Follow-up for #93584[1]. This change adds a simple example how to use
`Nextcloud` with `httpd`.

[1] https://github.com/NixOS/nixpkgs/pull/93584#discussion_r465233063
2020-08-10 22:09:01 +02:00
Benjamin Asbach
e513a4e1f9 roundcube: 1.4.7 -> 1.4.8 2020-08-10 22:05:29 +02:00
Arnout Engelen
44d841f758 inkcut: init at 2.1.1 2020-08-10 12:10:47 -07:00
Arnout Engelen
481e804309 python3Packages.qreactor: init at 2018-09-29 2020-08-10 12:10:47 -07:00