Commit Graph

188909 Commits

Author SHA1 Message Date
Maximilian Güntner
dac8fe9cee
nixos/matrix-synapse: use notify instead of simple
Starting with 1.3.0, matrix-synapse supports notifying
systemd. Relevant PR: matrix-org/synapse#5732
2019-08-18 09:41:33 +02:00
Maximilian Güntner
86a57e400d
matrix-synapse: 1.2.1 -> 1.3.1 2019-08-18 09:41:26 +02:00
Alexander Krotov
6a5213c740 castxml: set correct -DCLANG_RESOURCE_DIR
Fixes #66456
2019-08-15 20:35:07 +09:00
Danylo Hlynskyi
a8d19200af
linuxPackages/ixgbevf: 4.3.4 -> 4.6.1, unbreak (#66664) 2019-08-15 14:27:32 +03:00
Timo Kaufmann
faa3bbb6d3
Merge pull request #65364 from Tmplt/vim-plugins
vimPlugins: update; add seoul256-vim, vim-cpp-enhanced-highlight, delimitMate
2019-08-15 12:02:05 +02:00
Tmplt
8294b9bde6 Merge remote-tracking branch 'upstream/master' into vim-plugins 2019-08-15 11:28:44 +02:00
Michael Weiss
07cf130686
signal-desktop: 1.26.0 -> 1.26.1 2019-08-15 11:18:18 +02:00
Michael Weiss
6347116187
inxi: 3.0.35-1 -> 3.0.36-1 2019-08-15 11:11:00 +02:00
Vincent Laporte
3cc99ee1eb ocamlPackages.zarith: enable for OCaml 4.08 2019-08-15 09:09:28 +00:00
adisbladis
2f1cb20e50
Merge pull request #66642 from etu/emacspackagesng-emacsql-fix-sqlite
emacsPackagesNg.emacsql-sqlite: Build sqlite binary
2019-08-15 09:55:10 +01:00
Marek Mahut
08749c4860
Merge pull request #66588 from lschuermann/nixos-enter-silent
nixos-enter: add --silent to suppress activation script output
2019-08-15 10:22:27 +02:00
Marek Mahut
1e602ffdc9
Merge pull request #66666 from danbst/update-ena
linuxPackages/ena: 2.0.2 -> 2.1.2
2019-08-15 10:15:23 +02:00
danbst
4522648d0e linuxPackages/ena: 2.0.2 -> 2.1.2
Unbreak for newer kernels.
2019-08-15 10:10:25 +03:00
Elis Hirwing
ce60bca7c2
emacsPackagesNg.emacsql-sqlite: Build sqlite binary 2019-08-15 07:52:46 +02:00
Joachim F
e8c04bb367
Merge pull request #66245 from corngood/chicken-fix
chicken: fixes for chicken 5.1.0
2019-08-15 04:09:49 +00:00
Emily
6aa1b0acaf tinyprog: init at 1.0.24.dev99+ga77f828 2019-08-14 21:10:05 -05:00
Emily
527684b1e2 pythonPackages.jsonmerge: init at 1.6.1 2019-08-14 21:10:05 -05:00
Derek Kulinski
1c392dfcf0 pgbouncer: use c-ares for name resolution (#66336)
According to pgbouncer README.md file c-ares is the
prefered way to resolve names for pgbouncer 1.10+:
https://github.com/pgbouncer/pgbouncer/blob/master/README.md#dns-lookup-support

The previous method (evdns) did not support EDNS0 and SOA lookups.
2019-08-15 03:20:42 +03:00
worldofpeace
80396cf18a pythonPackages.wikipedia: remove
as lollypop no longer depends on this library that is
essentially abandoned we should remove it from
nixpkgs.
2019-08-14 19:59:02 -04:00
worldofpeace
8097e63ad8 lollypop: 1.1.4.2 -> 1.1.4.14
Removed python-wikipedia dependency [0]

[0]: https://gitlab.gnome.org/World/lollypop/-/tags/1.1.4.7
2019-08-14 19:59:02 -04:00
Peter Hoeg
503ca1f40c nixos aws: use in-kernel ixgbevf driver (#58956) 2019-08-15 02:58:22 +03:00
aszlig
dc525e8b12
Merge pull request #66648 (improve xkbvalidate)
This allows xkbvalidate to be compiled via Clang and also has a few
other portability improvements, eg. it now can even be compiled on OS X,
even though it's probably not needed there.

In addition, I changed the binary name so that it matches the package
name.

I'm merging this in right now, because there is only the xserver NixOS
module where this is used, so the risk of a catastrophic breakage is
very low.

Checks and build done by ofborg also ran successfully and I also did a
few local tests (eg. running via valgrind to avoid leaks) to make sure
it's still working properly.
2019-08-15 01:32:09 +02:00
aszlig
16ecd0d5ca
xkbvalidate: Rename output binary to xkbvalidate
So far, the output binary has been just "validate", which is quite a
very generic name and doesn't match the package name.

Even though I highly doubt that this program will ever be used outside
of NixOS modules, it's nevertheless less confusing to have a consistent
naming.

Signed-off-by: aszlig <aszlig@nix.build>
2019-08-15 01:11:32 +02:00
aszlig
1964b0c1b1
xkbvalidate: Don't rely on GNU extensions
The only reason why I was using _GNU_SOURCE was because of vasprintf(),
so getting rid of that extension should make the source way more
portable.

When using vsnprintf() with a null pointer for the output buffer and a
size of 0, I wasn't quite sure whether this would be undefined
behaviour, so I looked it up in the C11 standard.

In section 7.21.6.5, it explicitly mentions this case, so we're lucky:

  If n is zero, nothing is written, and s may be a null pointer.

Additionally, section 7.21.6.12 writes the following about vsnprintf():

  The vsnprintf function does not invoke the va_end macro.

So to be sure to avoid undefined behaviour I subsequently added the
corresponding va_end() calls.

With this, the platforms attribute is now "unix", because the program
should now even run on OS X, even though it usually wouldn't be needed.

Signed-off-by: aszlig <aszlig@nix.build>
2019-08-15 00:59:58 +02:00
aszlig
77e8a12755
xkbvalidate: Use $CC instead of hardcoded gcc
I initially didn't use $CC because I thought this would be GCC specific,
but it turns out that Clang actually accepts -std=gnu11.

So using $CC here might not work on compilers other than Clang or GCC,
but at the moment those are the compilers we typically use in nixpkgs,
so even if we'd use some other compiler it *might* even work there.

I've tested this by compiling against clangStdenv with both $CC and
clang hardcoded and it works.

This was reported by @dkudriavtsev on IRC.

Signed-off-by: aszlig <aszlig@nix.build>
2019-08-14 23:57:20 +02:00
worldofpeace
bc0072305b
Merge pull request #66638 from worldofpeace/favorite-apps-gnome3
nixos/gnome3: set favorite-apps
2019-08-14 17:12:48 -04:00
worldofpeace
83c0b5f06f nixos/gnome3: set favorite-apps
The upstream defaults [0] for this key include shotwell and
rhythmbox which aren't installed by the gnome3 module.
We swap these out for gnome-photos and gnome-music
which are.

[0]: https://gitlab.gnome.org/GNOME/gnome-shell/blob/3.32.2/data/org.gnome.shell.gschema.xml.in#L42
2019-08-14 16:55:45 -04:00
WilliButz
9bce1eaabd
Merge pull request #66630 from kolaente/update/gitea-1.9.1
gitea: 1.9.0 -> 1.9.1
2019-08-14 22:32:56 +02:00
WilliButz
f2e631148a
Merge pull request #66525 from andir/google-cloud-cpp
google-cloud-cpp: init at 0.11.0
2019-08-14 21:57:21 +02:00
Matthew Bauer
8281a67be0
Merge pull request #64809 from ambrop72/chromium-egl-fix
chromium: Fix running with --use-gl=egl.
2019-08-14 15:42:31 -04:00
Michael Raskin
f5a7cf7941
Merge pull request #66632 from fare-patches/master
Update Gambit and Gerbil from upstream
2019-08-14 18:24:00 +00:00
Matthew Bauer
9af20c376b
Merge pull request #65349 from matthewbauer/dicts
Lookup hunspell dictionaries in XDG_DATA_DIRS
2019-08-14 14:17:41 -04:00
Gabriel Ebner
29851a69d3
calculix: init at 2.15 (#66628)
calculix: init at 2.15
2019-08-14 19:51:18 +02:00
kolaente
e137c91526
gitea: 1.9.0 -> 1.9.1 2019-08-14 19:38:59 +02:00
Niklas Hambüchen
19b043fe84 coreutils: Patch benign test case failing with musl.
See https://github.com/NixOS/nixpkgs/pull/61250#issuecomment-491642024

Using upstream patch.
2019-08-14 19:16:43 +02:00
Niklas Hambüchen
5524dac2fe coreutils: Refactor test patching.
So that more patches can easily be added and commented.
2019-08-14 19:16:43 +02:00
Gabriel Ebner
0a1e131077 gmsh: opencascade support 2019-08-14 19:09:40 +02:00
Gabriel Ebner
f91904a889 calculix: init at 2.15 2019-08-14 19:09:40 +02:00
Gabriel Ebner
a736d87393 spooles: init at 2.2 2019-08-14 19:09:39 +02:00
Gabriel Ebner
8d67c151a6 all-packages: fix trailing space 2019-08-14 18:18:09 +02:00
aszlig
3e78331d96
Merge pull request #66582 (nginx security updates)
This addresses CVE-2019-9511, CVE-2019-9513 and CVE-2019-9516. Details
about these vulnerabilities can be found at:

216433296d/advisories/third-party/2019-002.md

Version 1.16.1 only includes the security fixes, however version 1.17.3
has two additional bugfixes:

  * "zero size buf" alerts might appear in logs when using gzipping; the
    bug had appeared in 1.17.2.
  * a segmentation fault might occur in a worker process if the
    "resolver" directive was used in SMTP proxy.

I haven't extensively tested this, but from a quick test, nginx is still
working and the NixOS tests also succeed.

Thanks to @Izorkin for the pull request.
2019-08-14 18:17:45 +02:00
Matthew Bauer
1af546a929
Merge pull request #65040 from matthewbauer/cups-fixes
nixos/cups fixes
2019-08-14 11:52:11 -04:00
Matthew Bauer
e9b7085ff8 cups: add myself as maintainer 2019-08-14 11:47:48 -04:00
Matthew Bauer
01cd4663d6 tests/printing: don’t wait for unit services
These are now socket activated, we don’t need it to start up front.
2019-08-14 11:47:48 -04:00
Matthew Bauer
011b12c3ca nixos: Add release notes for CUPS changes 2019-08-14 11:47:48 -04:00
Matthew Bauer
c068488817 nixos/cupsd: use socket-based activation by default
Make socket-based activation the
default (services.printing.startWhenNeeded)
2019-08-14 11:47:12 -04:00
Matthew Bauer
28040465be nixos/cupsd: include /run/cups/cups.sock in ListenStreams
This socket should always be created by systemd.
2019-08-14 11:47:12 -04:00
Matthew Bauer
35e633bde5 nixos/cupsd: only enable cups when startWhenNeeded = false
cups-browsed was pulling in cups.service even when we were using the
socket-based initialization.
2019-08-14 11:47:12 -04:00
Matthew Bauer
04ea093eb6 nixos/cupsd: Set CUPS_DATADIR globally
This is used by some programs that need CUPS data files. For instance,
print-manager looks here for printing test pages.
2019-08-14 11:47:12 -04:00
worldofpeace
dd49cf711e
Merge pull request #66338 from worldofpeace/installer/no-root
installer: Don't run as root
2019-08-14 11:20:54 -04:00