Commit graph

335448 commits

Author SHA1 Message Date
Cole Mickens
c6fc79a2ac
Merge pull request #141148 from walkah/tailscale-1.16.0
tailscale: 1.14.6 -> 1.18.1
2021-11-30 19:51:17 -08:00
Bobby Rong
c04182c7ee
Merge pull request #148089 from linyinfeng/godns
godns: 2.5.2 -> 2.5.3
2021-12-01 11:39:31 +08:00
Harsh Shandilya
e6096f4e1e
git-quickfix: 0.0.4 -> 0.0.5 2021-12-01 08:34:00 +05:30
James Walker
42a7e36904
tailscale: 1.14.6 -> 1.18.1 2021-11-30 21:49:00 -05:00
Lin Yinfeng
8b0fbacca0
godns: 2.5.2 -> 2.5.3 2021-12-01 10:23:18 +08:00
genofire
753c1f5a97 gnomeExtensions.pop-shell: init at unstable-2021-11-30 2021-12-01 02:59:06 +01:00
Bobby Rong
c30bbcfae7
Merge pull request #148034 from DarkOnion0/master
drawio: 15.8.4 -> 15.8.7
2021-12-01 09:51:11 +08:00
Martin Weinelt
9e234eba80 nixos/tests/home-assistant: test hardening with extraComponents 2021-12-01 01:19:01 +01:00
Martin Weinelt
254dd2a102 nixos/home-assistant: consider extraComponents in hardening
Previously the extraComponents added to an overriden package would not
have been considered in hardening measures enforced by the module.

Home Assistant is warning the user about component definitions having
moved away from YAML, so using an override to include support for a
component might become the better way moving forward.
2021-12-01 01:09:52 +01:00
github-actions[bot]
0128395ffd
Merge master into haskell-updates 2021-12-01 00:08:48 +00:00
github-actions[bot]
80fce0f4a7
Merge master into staging-next 2021-12-01 00:01:49 +00:00
Yestin L. Harrison
0fd4de2ae2 plan9port: add DarwinTools to buildInputs on darwin 2021-11-30 15:59:43 -08:00
Kira Bruneau
537e1d6218
Merge pull request #148069 from collares/debugpy
pythonPackages.debugpy: add aarch64-linux compile flags
2021-11-30 18:44:29 -05:00
Robert Schütz
cb928788e0 libdeltachat: 1.68.0 -> 1.69.0
https://github.com/deltachat/deltachat-core-rust/blob/1.69.0/CHANGELOG.md
2021-11-30 15:11:32 -08:00
Sergei Trofimovich
914567e4a7 spdk: upstream fix for ncurses-6.3
Without the change the build fails as:

    spdk_top.c:1949:69: error: format not a string literal and no format arguments [-Werror=format-security]
     1949 |                 mvwprintw(thread_win, 3, THREAD_WIN_FIRST_COL + 32, idle_time);
          |                                                                     ^~~~~~~~~
2021-11-30 22:41:39 +00:00
Martin Weinelt
1f726635ee nixos/charybdis: implement reload functionality
IRC daemons are highly stateful daemons, so allow config changes without
kicking all server and client connections.

Basically a port of 60c62214f5.
2021-11-30 23:33:34 +01:00
Robert Scott
ab5a3f8226
Merge pull request #147598 from LeSuisse/suricata-6.0.4
suricata: 6.0.3 -> 6.0.4
2021-11-30 22:25:51 +00:00
Martin Weinelt
0f2f663d26
matrix-appservice-irc: fix current version detection in update script
Would previously error out with
> error: '(with import ../../../../. {}; matrix-appservice-irc.version)' is not a valid URL
2021-11-30 23:24:50 +01:00
Francesco Zanini
ca09b01f37 libgphoto2: fix build of all camlibs
The camlibs `lumix` and `docupen` were excluded from compilation and
bundling due to the missing depdendencies.
2021-11-30 22:06:45 +00:00
sternenseemann
c23e14e33f haskell.compiler.*: assert that host->target == build->target tools
CC, CXX, LD, AR, …, LLC, OPT and CLANG will be invoked by GHC's build
system at build time in the build->target role. However, since we are
passing absolute paths, they will get saved in GHC's settings file and
later invoked at runtime, when they should be host->target. This means
that the build->target and host->target tools need to be the same for
our built GHC to work properly which is what we guard using these new
asserts.

Being able to drop these asserts would be a step towards cross-compiling
GHC (as opposed to building a GHC cross-compiler which still works).
2021-11-30 23:06:44 +01:00
sternenseemann
19fc229294 haskell.compiler.*: use targetCC for hasGold check
This is a bit shorter and more consistent with the rest of the file.
2021-11-30 23:00:11 +01:00
Fabián Heredia Montiel
5bb9d9176d gnome: update docs regarding nvidiaWayland 2021-11-30 15:59:30 -06:00
sternenseemann
c876c7498e haskell.compiler.*: only set CLANG to match llc/opt
* By taking clang from llvmPackages we make sure there is no version
  mismatch between LLVM (where llc and opt come from) and clang (which
  previously would be taken from stdenv on darwin for example).

* Only pass CLANG if useLLVM is true. Previously we also set this if
  targetCC was clang. This would cause potentially confusing behavior if
  llc and opt as well as clang are provided via PATH (and GHC is
  compiled with useLLVM == false), because clang from PATH would be
  ignored, but not llc and opt.
2021-11-30 22:55:19 +01:00
arcnmx
47fbfa2a57
gir-rs: unstable-2021-05-05 -> unstable-2021-11-21 (#147785) 2021-11-30 22:41:01 +01:00
Maximilian Bosch
9a4ad480ec
Merge pull request #148002 from pstn/nc2107
nextcloud21: 21.0.5 -> 21.0.7
2021-11-30 22:34:19 +01:00
sternenseemann
b2e4708105 haskell.compiler.ghc921: check if ld.gold is available in useLdGold
Since 4c75874560 it is possible to
introspect if ld.gold is contained in the used bintools, so we can also
check if it is available before deciding to use it as done in the other
GHC derivations in 0908812372.
2021-11-30 22:22:30 +01:00
Michael Weiss
cb91e61c56
chromiumDev: 98.0.4710.4 -> 98.0.4736.0 2021-11-30 22:18:36 +01:00
Fabian Affolter
a2515aedae python3Packages.angrop: 9.0.10651 -> 9.0.10689 2021-11-30 22:18:21 +01:00
Maximilian Bosch
c1ab62e755
Merge pull request #147390 from sumnerevans/matrix-synapse-1.48
matrix-synapse: 1.47.1 -> 1.48.0
2021-11-30 22:18:21 +01:00
Fabian Affolter
17d9ff5a3e python3Packages.angr: 9.0.10651 -> 9.0.10689 2021-11-30 22:18:18 +01:00
Fabian Affolter
6e37d87a36 python3Packages.cle: 9.0.10651 -> 9.0.10689 2021-11-30 22:18:13 +01:00
Fabian Affolter
fbc522930f python3Packages.claripy: 9.0.10651 -> 9.0.10689 2021-11-30 22:18:10 +01:00
Fabian Affolter
73f72eaebc python3Packages.pyvex: 9.0.10651 -> 9.0.10689 2021-11-30 22:18:06 +01:00
Fabian Affolter
2ecba993ae python3Packages.ailment: 9.0.10651 -> 9.0.10689 2021-11-30 22:18:02 +01:00
Fabian Affolter
d5bd356070 python3Packages.archinfo: 9.0.10651 -> 9.0.10689 2021-11-30 22:17:59 +01:00
Fabian Affolter
1b1e75f100 python3Packages.python-gvm: 21.10.0 -> 21.11.0 2021-11-30 22:09:09 +01:00
Mauricio Collares
ed5709050c pythonPackages.debugpy: add aarch64-linux compile flags 2021-11-30 18:06:42 -03:00
Robin Townsend
43ec279d77 minecraft-server: 1.17.1 -> 1.18 2021-11-30 16:02:00 -05:00
Fabian Affolter
80863cd550 python3Packages.vt-py: 0.8.0 -> 0.9.0 2021-11-30 22:00:17 +01:00
Fabian Affolter
5b89ab8ef1 python3Packages.qcs-api-client: 0.20.1 -> 0.20.3 2021-11-30 21:55:52 +01:00
Fabian Affolter
d9ae78fac8 python3Packages.pytenable: 1.3.3 -> 1.4.0 2021-11-30 21:52:10 +01:00
Arthur Gautier
1f37386976 goreleaser: 0.184.0 -> 1.1.0 2021-11-30 21:32:06 +01:00
Fabian Affolter
948c50a99a tfsec: 0.61.2 -> 0.61.3 2021-11-30 21:22:37 +01:00
Sandro
39b1caa278
Merge pull request #146345 from SuperSandro2000/locate-pruneBindMounts 2021-11-30 21:16:25 +01:00
Sandro
06811e74f3
Merge pull request #146533 from SuperSandro2000/nginx 2021-11-30 21:16:09 +01:00
Fabian Affolter
445c1a6e07 checkov: 2.0.606 -> 2.0.614 2021-11-30 21:15:45 +01:00
Artturi
05ea0547e4
Merge pull request #147635 from arkivm/fix-vowpalwabbit 2021-11-30 22:15:10 +02:00
Sandro
9ad417c8c1
Merge pull request #136080 from womfoo/fix/armv7l-pandas 2021-11-30 21:14:34 +01:00
Felix Buehler
22dffe27f3 pkgs/tools: use pname&version instead of name 2021-11-30 21:11:29 +01:00
Sandro
bea91ade47
Merge pull request #147995 from jbedo/singularity 2021-11-30 21:08:33 +01:00