Commit Graph

6494 Commits

Author SHA1 Message Date
Jörg Thalheim
2255fce780
Merge pull request #47270 from Vskilet/roundcube-package
roundcube: init at 1.3.7
2018-09-27 14:59:40 +01:00
John Ericson
b53b8639a6 Merge remote-tracking branch 'upstream/master' into staging 2018-09-26 15:55:00 -04:00
Franz Pletz
e7ca9af4cc
shairport-sync: fix pulseaudio support & default arguments 2018-09-26 18:12:02 +02:00
John Ericson
e2a2073011 Merge remote-tracking branch 'upstream/master' into staging 2018-09-26 11:23:18 -04:00
Victor SENE
e387f2506b roundcube: simplify using fetchzip 2018-09-26 15:34:46 +02:00
Will Dietz
7047d60ef4 libXinerama: 1.1.3 -> 1.1.4
https://lists.x.org/archives/xorg-announce/2018-July/002905.html
2018-09-25 20:07:31 -05:00
Jörg Thalheim
3833381dc9
Merge pull request #47319 from r-ryantm/auto-update/cadvisor
cadvisor: 0.30.2 -> 0.31.0
2018-09-25 23:02:44 +01:00
xeji
367b8a0c49
Merge pull request #47335 from Chiiruno/dev/bump
Update: linux_testing_bcachefs, dolphinEmuMaster, easyjson, quicktemplate, hydron
2018-09-25 22:00:50 +02:00
John Ericson
c701d6cb21 Merge remote-tracking branch 'upstream/master' into staging 2018-09-25 14:20:27 -04:00
Peter Simons
3a6329db85
Merge pull request #47324 from r-ryantm/auto-update/bind
bind: 9.12.2 -> 9.12.2-P2
2018-09-25 16:43:26 +02:00
Peter Simons
fc69413632
Merge pull request #47328 from r-ryantm/auto-update/apache-httpd
apacheHttpd: 2.4.34 -> 2.4.35
2018-09-25 16:43:14 +02:00
R. RyanTM
524c2120f9 apacheHttpd: 2.4.34 -> 2.4.35
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/apache-httpd/versions
2018-09-25 07:25:14 -07:00
Okina Matara
d13b64cff8
hydron: 2018-08-18 -> 2018-09-25 2018-09-25 09:18:38 -05:00
R. RyanTM
d1c1fbb61b bind: 9.12.2 -> 9.12.2-P2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/bind/versions
2018-09-25 07:16:15 -07:00
R. RyanTM
67c5133f60 cadvisor: 0.30.2 -> 0.31.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/cadvisor/versions
2018-09-25 06:48:02 -07:00
R. RyanTM
114a0a8391 apt-cacher-ng: 3.1 -> 3.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/apt-cacher-ng/versions
2018-09-25 06:33:07 -07:00
Alexey Lebedeff
a6ff5865d1 rabbitmq-server: 3.6.10 -> 3.7.8
- New dependency on 'getconf' binary for
  3aa619e9ef/src/vm_memory_monitor.erl (L448)
- New dependency on 'socat' for systemd notifications
  4a3ee3a336/src/rabbit.erl (L361)
- elixir_1_6 for a new 'rabbitmqctl' tool
- Replace patching with providing custom PATH, as we already have some
  other things here
- Renamed package in all-packages.nix from a legacy spelling
2018-09-25 11:19:23 +02:00
aszlig
19e83bc2ba
Merge autoPatchelfHook improvements (#47222)
This includes the initialy commit was done by @Mic92 plus a few fixes
from my side. So essentially this avoids patching statically linked
executables and also speeds up searching for ELF files altogether.

I've tested this by comparing the outputs of all the derivations which
make use of this hook using the following Nix expression:

  let
    getPackagesForRev = rev: with import (builtins.fetchGit {
      url = ./.;
      inherit rev;
    }) { config.allowUnfree = true; }; [
      cups-kyodialog3 elasticsearch franz gurobi javacard-devkit
      masterpdfeditor maxx oracle-instantclient powershell reaper
      teamviewer unixODBCDrivers.msodbcsql17 virtlyst wavebox zoom-us
    ];

    pkgs = import <nixpkgs> {};
    baseRev = "ef764eb0d8314b81a012dae04642b4766199956d";

  in pkgs.runCommand "diff-contents" {
    chset = pkgs.lib.zipListsWith (old: new: pkgs.runCommand "diff" {
      inherit old new;
      nativeBuildInputs = [ pkgs.nukeReferences ];
    } ''
      mkdir -p "''${NIX_STORE#/}"
      cp --no-preserve=all -r "$old" "''${NIX_STORE#/}"
      cp --no-preserve=all -r "$new" "''${NIX_STORE#/}"
      find "''${old#/}" "''${new#/}" \
        \( -type f -exec nuke-refs {} + \) -o \( -type l -delete \)
      mkdir "$out"
      echo "$old" > "$out/old-path"
      echo "$new" > "$out/new-path"
      diff -Nur "''${old#/}" "''${new#/}" > "$out/diff" || :
    '') (getPackagesForRev baseRev) (getPackagesForRev "");
  } ''
    err=0
    for c in $chset; do
      if [ -s "$c/diff" ]; then
        echo "$(< "$c/old-path") -> $(< "$c/new-path")" \
             "differs, report: $c/diff" >&2
        err=1
      fi
    done
    [ $err -eq 0 ] && touch "$out"
  ''

With these changes there is only one derivation which has altered
contents, which is "franz". However the reason why it has differing
contents is not directly because of the autoPatchelfHook changes, but
because the "env-vars" file from the builder is in
"$out/opt/franz/env-vars" (Cc: @gnidorah) and we now have different
contents for NIX_CFLAGS_COMPILE and other environment variables.

I also tested this against a random static binary and the hook no longer
tries to patch it.

Merges: #47222
2018-09-25 05:21:01 +02:00
aszlig
8df68a93e6
elasticsearch: Add zlib to buildInputs for unfree
The unfree variant of elasticsearch uses autoPatchelfHook and since we
removed the dependency on file for the hook itself in
58a97dfb49 we no longer have zlib
propagated.

So we need to explicitly state that dependency here.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @apeschar, @basvandijk
2018-09-25 05:09:37 +02:00
Michael Raskin
ce411911e8
Merge pull request #47289 from 1000101/master
trezord: 2.0.14 -> 2.0.19 and nixos/trezord: revised and updated udev rules
2018-09-24 20:08:44 +00:00
Jörg Thalheim
0a8bbcbac5
Merge pull request #47273 from pacien/patch-5
matrix-synapse: 0.33.3.1 -> 0.33.5
2018-09-24 20:47:50 +01:00
Vladimír Čunát
3a09a4b579
Merge branch 'master' into staging
Hydra: ?compare=1480463
2018-09-24 21:18:23 +02:00
R. RyanTM
f37b39d279 jackett: 0.10.160 -> 0.10.198
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/jackett/versions
2018-09-24 20:40:29 +02:00
1000101
180d68ab39 trezord: 2.0.14 -> 2.0.19 2018-09-24 19:25:21 +02:00
Notkea
4cd6502925
matrix-synapse: 0.33.3.1 -> 0.33.5
Upgrade matrix-synapse to the latest version,
adding a new required dependency (treq)
2018-09-24 16:57:37 +02:00
Victor SENE
1e7997bdd2 roundcube: init at 1.3.7 2018-09-24 16:44:29 +02:00
Will Dietz
d2829974e5
Merge pull request #47120 from dtzWill/update/xf86-input-libinput-0.28.0
xf86-input-libinput: 0.26.0 -> 0.28.0
2018-09-23 13:23:36 -05:00
Will Dietz
193d248569
Merge pull request #47147 from dtzWill/update/mesa-18.2
mesa: 18.1.8 -> 18.2.1
2018-09-23 13:23:29 -05:00
Jörg Thalheim
0ae8ac8651
Merge pull request #47219 from lheckemann/xcb-1.13
xorg.libxcb: 1.12 -> 1.13
2018-09-23 14:59:05 +01:00
R. RyanTM
d57b9eb6d6 pgtap: 0.98.0 -> 0.99.0 (#46980)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pgtap/versions
2018-09-23 15:09:37 +02:00
Linus Heckemann
155e017390 xorg.libxcb: 1.12 -> 1.13 2018-09-23 13:53:25 +01:00
Jos van Bakel
91d9e1eb22 influxdb: 1.4.1 -> 1.6.3 (#47186) 2018-09-23 12:00:52 +02:00
R. RyanTM
aefb40b671 hylafaxplus: 5.6.0 -> 5.6.1 (#47045)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/hylafaxplus/versions
2018-09-22 18:25:44 +02:00
Will Dietz
a94ac965c8 libxcb: 1.12 -> 1.13 (proto too)
(cherry picked from commit 5853e62637eb2aaa1f2ccbcbf62c2a4f232a4257)
2018-09-21 13:24:47 -05:00
Daiderd Jordan
1a1a5af252
Merge pull request #47051 from LnL7/darwin-broken-d
broken darwin packages (d)
2018-09-21 20:15:00 +02:00
Will Dietz
55a5236630 xf86-input-libinput: 0.26.0 -> 0.28.0
https://cgit.freedesktop.org/xorg/driver/xf86-input-libinput/log/
2018-09-21 07:58:57 -05:00
R. RyanTM
6f88fb0681 clickhouse: 18.10.3 -> 18.12.17
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/clickhouse/versions
2018-09-20 16:22:57 -07:00
Daiderd Jordan
709a828e71
dico: mark linux only.
Never built successfully.

    Undefined symbols for architecture x86_64:
      "_rpl_strerror", referenced from:
          _default_print_diag in libgrecs.a(diag.o)
          _grecs_symtab_strerror in libgrecs.a(symtab.o)
          _parse_inet in libgrecs.a(sockaddr.o)
    ld: symbol(s) not found for architecture x86_64

/cc ZHF #45961
2018-09-20 22:19:56 +02:00
R. RyanTM
31ea743d13 metabase: 0.30.1 -> 0.30.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/metabase/versions
2018-09-20 18:50:03 +02:00
R. RyanTM
3222fe1756 smcroute: 2.4.1 -> 2.4.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/smcroute/versions
2018-09-20 16:42:09 +00:00
Julien Moutinho
27f95f3f9c dovecot: allow sasl_bind=yes in the LDAP driver.
Dovecot has its own SASL implementation,
but needs Cyrus SASL's headers to bind to an LDAP server using SASL.

This is useful to avoid the need to manage a dnpass= in dovecot-ldap.conf
by using the Unix socket to authenticate.

This is done with sasl_mech=EXTERNAL in dovecot-ldap.conf, and some olcAccess: with
 by dn="gidNumber=0+uidNumber=0,cn=peercred,cn=external,cn=auth" read
in the slapd's cn=config for the LDAP database queried by dovecot/auth (which runs as root).
2018-09-19 17:20:29 +02:00
xeji
012682222f
openxpki: fix build, use current python3Packages (#46860)
Build used python34Packages and failed because python34Packages.pytest
didn't build anymore. Use python3Packages instead.
2018-09-19 16:16:19 +02:00
Ryan Mulligan
d531b8db6f
Merge pull request #46843 from jslight90/mattermost
mattermost: 5.1.0 -> 5.3.0
2018-09-19 06:40:46 -07:00
Julien Moutinho
6c4480b498 postfix: add -DUSE_LDAP_SASL in CCARGS to support bind=sasl. 2018-09-19 11:42:26 +02:00
R. RyanTM
9064d9db00 cstore_fdw: 1.6.1 -> 1.6.2 (#46291)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/cstore_fdw/versions
2018-09-18 18:26:08 +02:00
WilliButz
b59cd2bc17 prometheus-json-exporter: add patch to support bool parsing 2018-09-18 18:21:00 +02:00
WilliButz
b712736283 prometheus-json-exporter: 2016-09-13 -> 2017-10-06 2018-09-18 18:21:00 +02:00
R. RyanTM
dcd6977b11 groonga: 8.0.5 -> 8.0.6 (#46277)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
groonga
2018-09-18 18:08:47 +02:00
R. RyanTM
7ffa71c23e neo4j: 3.4.5 -> 3.4.6 (#46244)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
neo4j
2018-09-18 18:06:34 +02:00
R. RyanTM
6557bcde9f checkSSLCert: 1.64.0 -> 1.72.0 (#46290)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/check_ssl_cert/versions
2018-09-18 18:05:19 +02:00
R. RyanTM
b6a21f6288 varnish6: 6.0.0 -> 6.0.1 (#46170)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
varnish
2018-09-18 17:57:10 +02:00
Sarah Brofeldt
e433f1cbf9
Merge pull request #46800 from pacien/exim-package-lmtp
exim: enable LMTP support
2018-09-18 09:50:56 +02:00
Austin Seipp
f1737fa646 foundationdb60: 6.0.4pre2497_73d64cb2 -> 6.0.11pre2716_9e8c1941e
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-09-17 17:49:09 -05:00
Jeff Slight
06eeeed171 mattermost: 5.1.0 -> 5.3.0 2018-09-17 13:01:12 -07:00
pacien
c3dd421a2e exim: enable LMTP support
This makes the LMTP transport available by default.
No additional dependency is required.
2018-09-17 22:01:11 +02:00
Timo Kaufmann
3dfc66d81f
Merge pull request #46724 from worldofpeace/emby/3.5.2.0
emby: 3.4.1.0 -> 3.5.2.0
2018-09-17 17:00:07 +02:00
worldofpeace
bd02b3352a emby: 3.4.1.0 -> 3.5.2.0 2018-09-17 09:41:16 -04:00
WilliButz
a31a917eb9 codimd: init at 1.2.0 2018-09-17 15:18:52 +02:00
Maximilian Bode
7c98b3d0d1 prometheus_2: 2.2.1 -> 2.3.2 (#46333) 2018-09-17 11:23:12 +02:00
Notkea
f607f45f33 exim: add optional support for PAM (#46744) 2018-09-17 10:50:14 +02:00
R. RyanTM
37c3d6c3f6 arangodb: 3.3.14 -> 3.3.15 (#46305)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/arangodb/versions
2018-09-17 10:25:34 +02:00
R. RyanTM
c45dd04946 matomo: 3.5.1 -> 3.6.0 (#46242)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
matomo
2018-09-17 10:18:39 +02:00
Maximilian Bode
5e21a5aa57 apacheKafka_0_10: 0.10.2.1 -> 0.10.2.2 2018-09-15 10:09:21 -04:00
Maximilian Bode
aa4fe884c8 apacheKafka_0_11: 0.11.0.1 -> 0.11.0.3 2018-09-15 10:09:21 -04:00
Maximilian Bode
27e8734642 apacheKafka_1_0: 1.0.1 -> 1.0.2 2018-09-15 10:09:21 -04:00
Maximilian Bode
00ed6a6b30 apacheKafka_1_1: 1.1.0 -> 1.1.1 2018-09-15 10:09:21 -04:00
Maximilian Bode
e5a5cd4806 apacheKafka: 1.1.0 -> 2.0.0 2018-09-15 10:09:21 -04:00
WilliButz
81156549a2 prometheus-snmp-exporter: 0.11.0 -> 0.13.0 (#46677) 2018-09-15 02:02:34 +02:00
xeji
c2c9c6adfe
Merge pull request #46385 from xeji/p/broken
mark long-failing packages broken for 18.09
2018-09-15 00:54:49 +02:00
WilliButz
21324ef0e4
prometheus-dovecot-exporter: 0.1.1 -> 0.1.3 2018-09-13 21:07:21 +02:00
Robin Gloster
ee21f64f6a
Merge pull request #46614 from mayflower/atlassian-update
Atlassian update
2018-09-13 19:52:59 +02:00
Simon Lackerbauer
a431f3e35d
atlassian-jira: 7.12.0 -> 7.12.1 2018-09-13 19:32:33 +02:00
rembo10
6fb62ac285 sickrage: init at v2018.07.21-1 2018-09-13 19:11:18 +02:00
rembo10
4a2b028921 sickgear: init at 0.17.5 2018-09-13 19:11:18 +02:00
rembo10
437bcdfed5 sickbeard: init at 2016-03-21 2018-09-13 19:11:17 +02:00
Simon Lackerbauer
f05e51abed
atlassian-crowd: 3.1.2 -> 3.2.5 2018-09-13 19:09:22 +02:00
Simon Lackerbauer
4d962b6dcd
atlassian-confluence: 6.8.0 -> 6.11.1 2018-09-13 19:07:53 +02:00
WilliButz
68b25008e2
grafana: 5.2.3 -> 5.2.4 2018-09-13 18:22:37 +02:00
Uli Baum
19d1daedd0 kippo: mark as broken
no successful hydra build since 2017-12-11
2018-09-13 00:58:57 +02:00
R. RyanTM
1b5744a42d radarr: 0.2.0.995 -> 0.2.0.1120 (#46185)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
radarr
2018-09-12 22:52:09 +02:00
R. RyanTM
cdf162eafb uftp: 4.9.7 -> 4.9.8 (#46175)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
uftp
2018-09-12 22:48:50 +02:00
Jörg Thalheim
1bdba70b71
Merge pull request #44496 from Yarny0/hylafaxplus
Hylafaxplus
2018-09-11 10:48:19 +01:00
Matthew Bauer
22076da35f
Merge pull request #46156 from r-ryantm/auto-update/xcb-util-xrm
xcbutilxrm: 1.2 -> 1.3
2018-09-10 15:00:11 -05:00
adisbladis
76d4ff205b
Merge pull request #46405 from swdunlop/nats-streaming-server-0.11.0
nats-streaming-server: init at 0.11.0
2018-09-11 01:04:50 +08:00
R. RyanTM
aba0fe5d62 metabase: 0.30.0 -> 0.30.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
metabase
2018-09-09 23:33:02 -05:00
xeji
17c51ef436
Merge pull request #45925 from markuskowa/ompi-up
slurm: 17.11.9-2 -> 18.08.0-1
2018-09-09 14:20:00 +02:00
R. RyanTM
836ce9d91e nextcloud: 13.0.5 -> 13.0.6 (#46236)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
nextcloud
2018-09-09 14:16:41 +02:00
Scott W. Dunlop
c69933f71b nats-streaming-server: init at 0.11.0 2018-09-08 23:11:24 +00:00
Markus Kowalewski
7a5b42161f
slurm: 17.11.9-2 -> 18.08.0-1 2018-09-08 23:14:54 +02:00
Uli Baum
15fedb51b3 frab: mark as broken
No successful hydra build since 2018-02-14.
The build fails in the ruby gem json-1.8.3, which we cannot
mark directly as broken in nixpkgs, so we mark this as broken.
2018-09-08 20:08:49 +02:00
Michael Weiss
a6934b2389 sks: Adapt the package to NixOS (pkgs.db provides only "db_stat") 2018-09-08 16:24:05 +02:00
Michael Weiss
d02c6a56cc sks: Copy the web examples to $webSamples for the module 2018-09-08 16:24:05 +02:00
Yarny0
a08b633fe7 HylaFAX+: init at 5.6.0
Create the top-level packages attribute
'hylafaxplus' that builds HylaFAX+ .

Note:
The nobody uid and the nogroup gid
are hardcoded in the package.
The package build recipe file
contains options to modify these ids.
2018-09-08 14:21:40 +02:00
Robert Schütz
c42f0f95bb home-assistant: 0.77.2 -> 0.77.3 2018-09-06 20:22:56 +02:00
Paul TREHIOU
fc2c606a7a jackett: 0.9.41 -> 0.10.160 (#46114)
* jackett: update mono to 5.8

Jackett needs mono version >= 5.8

https://github.com/Jackett/Jackett/blob/master/README.md#supported-systems

* jackett: 0.9.41 -> 0.10.160
2018-09-06 18:02:33 +02:00
R. RyanTM
f3bc6aec00 xcbutilxrm: 1.2 -> 1.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
xcb-util-xrm
2018-09-06 07:38:41 -07:00
Michael Raskin
6ea0c3e271 matrix-synapse: 0.33.3 -> 0.33.3.1 2018-09-06 17:16:45 +03:00
Shea Levy
18337f3ece
Merge branch 'no-toPath' 2018-09-06 08:09:53 -04:00
Janne Heß
a885e886b6 nullidentdmod: Init at 1.3 (#46040) 2018-09-05 11:09:55 +02:00
Michele Guerini Rocco
ca850897c8 pdns-recursor: 4.1.3 -> 4.1.4 (#45984) 2018-09-03 22:15:11 +02:00
Vladimír Čunát
0a5b8ef8c4
knot-dns: 2.7.1 -> 2.7.2
https://lists.nic.cz/pipermail/knot-dns-users/2018-August/001423.html
2018-09-03 14:40:34 +02:00
Robert Schütz
e5bd748795 home-assistant: 0.77.1 -> 0.77.2 2018-09-02 09:45:31 +02:00
R. RyanTM
42971e1068 powerdns: 4.1.3 -> 4.1.4 (#45805)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
powerdns
2018-09-01 23:20:01 +02:00
Silvan Mosberger
29f9a50958
Merge pull request #45904 from symphorien/elasticsearch-now-review
elasticsearch plugins: don't use lib.version
2018-09-01 17:53:28 +02:00
Symphorien Gibol
53744fe7dd elasticsearch plugins: don't use lib.version
This is wrong and makes the hash change on each nixpkgs commit.
2018-09-01 16:32:59 +02:00
R. RyanTM
b8b71e26ed dico: 2.5 -> 2.6 (#45837)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
dico
2018-09-01 14:08:38 +02:00
xeji
5da41a3d71
Merge pull request #45154 from r-ryantm/auto-update/rpcbind
rpcbind: 0.2.4 -> 1.2.5
2018-08-31 20:15:22 +02:00
Robert Schütz
13c6a9ba86 home-assistant: 0.76.1 -> 0.77.1 2018-08-31 19:07:35 +02:00
Franz Pletz
647b5b1a29
nginxMainline: 1.15.2 -> 1.15.3 2018-08-31 14:42:14 +02:00
Michael Raskin
37c0f1cafa matrix-synapse: 0.33.0 -> 0.33.3 2018-08-31 14:50:15 +03:00
Uli Baum
f2a4adfec2 rpcbind: switch to upstream git repo, drop patch 2018-08-31 00:04:15 +02:00
xeji
94f71d800d
Merge pull request #45808 from markuskowa/licenses-11
Add licenses
2018-08-30 22:45:17 +02:00
Markus Kowalewski
5c9fbdfbfc
bsd_fingerd: add license 2018-08-30 22:29:17 +02:00
Timo Kaufmann
2a606200bc
Merge pull request #45794 from r-ryantm/auto-update/wallabag
wallabag: 2.3.2 -> 2.3.3
2018-08-30 22:13:38 +02:00
R. RyanTM
1adcb8890a wallabag: 2.3.2 -> 2.3.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
wallabag
2018-08-30 09:12:20 -07:00
Simon Lackerbauer
d347eed514 atlassian-jira: 7.11.2 -> 7.12.0
(cherry picked from commit b2f042dfd8edf67d3096ff3294ff9050890ecfdd)
2018-08-30 12:42:22 +02:00
Simon Lackerbauer
003ca4ecd2 atlassian-jira: 7.11.1 -> 7.11.2
(cherry picked from commit aa52aa68a33313e4e209872a0422622ae65116cc)
2018-08-30 12:42:22 +02:00
Simon Lackerbauer
9362fb6af4 atlassian-jira: 7.11.0 -> 7.11.1
(cherry picked from commit 093eb27a9e5793343f6506d063debb3d11794ac1)
2018-08-30 12:42:22 +02:00
xeji
f629d36560
Merge pull request #45411 from alyssais/linux-libre
linux-libre: init
2018-08-30 09:01:00 +02:00
R. RyanTM
96ae011720 nagios: 4.4.1 -> 4.4.2 (#45558)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/nagios/versions.
2018-08-28 13:53:51 +02:00
Jörg Thalheim
fc32a36956
Merge pull request #45585 from erosennin/clickhouse
clickhouse: 18.5.1 -> 18.10.3
2018-08-28 12:05:34 +01:00
R. RyanTM
0f9e0e15fc shaarli: 0.10.0 -> 0.10.2 (#45538)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/shaarli/versions.
2018-08-28 00:39:17 +02:00
R. RyanTM
294c3605a3 virtlyst: 1.1.0 -> 1.2.0 (#45121)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/virtlyst/versions.
2018-08-27 20:59:27 +02:00
Tuomas Tynkkynen
9236e9a28d zabbix34: Compile with OpenSSL
Fixes:

"TLSConnect" configuration parameter cannot be used: Zabbix agent was compiled without TLS support
2018-08-27 18:41:09 +03:00
Timo Kaufmann
83bb07646c
Merge pull request #45606 from r-ryantm/auto-update/charybdis
charybdis: 4.1 -> 4.1.1
2018-08-26 20:10:35 +02:00
Bas van Dijk
7d04961c95
Merge pull request #44389 from Mic92/es6
elasticsearch: use 6.x as default version, remove unsupported releases
2018-08-25 17:04:07 +02:00
Uli Baum
da0ce8ca52 munin: fix build
fallout from perl 5.24 -> 5.28 update
2018-08-25 01:00:05 +02:00
R. RyanTM
e56f668bfd charybdis: 4.1 -> 4.1.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/charybdis/versions.
2018-08-24 12:54:44 -07:00
sjau
030cf55923 Plex: 1.13.4 -> 1.13.5 (#45578) 2018-08-24 18:36:32 +02:00
Andrey Golovizin
ac2cbcf10e clickhouse: 18.5.1 -> 18.10.3 2018-08-24 15:25:00 +02:00
Vladimír Čunát
7db611f2af
Merge branch 'staging'
Includes libX11 security update.
2018-08-24 09:19:43 +02:00
Guillaume Loetscher
86b51e40ad Bumping mono to 5.4.1.6 (#45516) 2018-08-24 00:42:47 +02:00
Bas van Dijk
551fec4467 Merge branch 'master' into es6 2018-08-23 23:41:27 +02:00
R. RyanTM
3c00ac3572 metabase: 0.29.3 -> 0.30.0 (#45182)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/metabase/versions.
2018-08-23 23:18:59 +02:00
R. RyanTM
3852e136b0 arangodb: 3.3.12 -> 3.3.14 (#45272)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/arangodb/versions.
2018-08-23 23:18:04 +02:00
xeji
30ac3b14ab
Merge pull request #45351 from swdunlop/nats
gnatsd: init at 1.2.0
2018-08-23 22:49:51 +02:00
Jörg Thalheim
5e9cbc1291
Merge pull request #45410 from alyssais/linuxPackages_4_18-broken
Mark broken kernel modules on Linux 4.18
2018-08-23 18:37:33 +01:00
Robert Schütz
5044918384 radicale: 2.1.9 -> 2.1.10 2018-08-23 15:43:34 +02:00
WilliButz
c847fbb54e grafana: 5.2.2 -> 5.2.3 2018-08-23 00:13:06 +02:00
Matthew Bauer
379fc894de Merge remote-tracking branch 'origin/master' into staging 2018-08-21 15:41:53 -05:00
xeji
691ec455a8
Merge pull request #45246 from r-ryantm/auto-update/couchdb
couchdb2: 2.1.2 -> 2.2.0
2018-08-21 20:02:43 +02:00
Vladimír Čunát
cb44c3ff4c
xorg.libX11: 1.6.5 -> 1.6.6 (security)
CVE-2018-14598, CVE-2018-14599, CVE-2018-14600
https://lists.x.org/archives/xorg-announce/2018-August/002915.html
2018-08-21 19:32:13 +02:00
R. RyanTM
13f719a3a9 jackett: 0.9.1 -> 0.9.41 (#45209)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/jackett/versions.
2018-08-21 19:28:30 +02:00
Robert Schütz
33be3c4630 home-assistant: 0.75.2 -> 0.76.1
Also simplify the way overrides are defined for better readability
and use the opportunity to introduce a packageOverrides option.
2018-08-21 19:26:54 +02:00
Vladimír Čunát
765d695b89
Merge branch 'staging-next'
Security fixes for a few packages are included.
2018-08-21 15:36:02 +02:00
R. RyanTM
3fc5aa6cd4 neo4j: 3.4.1 -> 3.4.5 (#45187)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/neo4j/versions.
2018-08-21 14:48:22 +02:00
Peter Hoeg
69567fc0a7 unifiTesting: 5.8.14 -> 5.9.22 2018-08-21 09:34:52 +08:00
Peter Hoeg
cabdb0c711 unifiStable: 5.7.23 -> 5.8.28 2018-08-21 09:34:52 +08:00
Peter Hoeg
69e5ddc456 unifiLTS: 5.6.37 -> 5.6.39 2018-08-21 09:34:52 +08:00
Alyssa Ross
33a1044c32
linuxPackages*.openafs*: use modDirVersion
`version` doesn't include .0 patch versions, or suffixes (eg -gnu).
For .0 patch versions, this isn't a problem, since the glob takes care
of everything after a `.`. It does, however, prevent openafs installing
for suffixed kernels.
2018-08-21 00:39:38 +02:00
Alyssa Ross
358ca401da
linuxPackages_4_18.openafs_1_8: broken 2018-08-21 00:34:54 +02:00
Alyssa Ross
8a66aacad7
linuxPackages_4_18.openafs: broken 2018-08-21 00:34:53 +02:00
Jörg Thalheim
3280fa006d
Merge pull request #45375 from markuskowa/slurm-up
slurm: 17.11.7 -> 17.11.9-2
2018-08-20 15:59:21 +01:00
Jörg Thalheim
a4869cb294
Merge pull request #45372 from fgaz/facette/0.4.0-0.4.1
facette: 0.4.0 -> 0.4.1
2018-08-20 15:28:02 +01:00
Francesco Gazzetta
0e0e963847 facette: mark as broken since it requires internet
It _is_ buildable, just not without an internet connection (like in hydra)
2018-08-20 16:17:15 +02:00
Johannes Frankenau
f0a354437b mpd: 0.20.20 -> 0.20.21 2018-08-20 14:06:27 +02:00
Christoph Hrdinka
613fdc48dd
Merge pull request #45176 from r-ryantm/auto-update/nsd
nsd: 4.1.23 -> 4.1.24
2018-08-20 13:39:49 +02:00
Markus Kowalewski
0be340f455
slurm: 17.11.7 -> 17.11.9-2 2018-08-20 13:37:23 +02:00
Francesco Gazzetta
fbab1a3cae facette: 0.4.0 -> 0.4.1 2018-08-20 11:43:36 +02:00
Vladimír Čunát
8d539c9933
knot-dns, knot-resolver: major updates
They're in a single commit, as splitting would break knot-resolver build.
https://gitlab.labs.nic.cz/knot/knot-dns/blob/v2.7.1/NEWS
https://gitlab.labs.nic.cz/knot/knot-resolver/blob/v3.0.0/NEWS
2018-08-20 11:23:36 +02:00
John Ericson
440ac01e5a
postgresql: Fix cross compilation
b1548ce080 dropped the C compiler prefix
2018-08-20 10:12:18 +02:00
Vladimír Čunát
153a19df05
Merge branch 'master' into staging-next
Hydra: ?compare=1474536
2018-08-20 09:15:33 +02:00
Markus Kowalewski
552b20f4b8
frab: add meta data 2018-08-20 00:31:19 +02:00
R. RyanTM
aacb2840d1 pgbouncer: 1.8.1 -> 1.9.0 (#45168)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pgbouncer/versions.
2018-08-19 22:47:48 +02:00
R. RyanTM
7fa8623d11 pgroonga: 2.0.6 -> 2.0.9 (#45167)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pgroonga/versions.
2018-08-19 22:47:22 +02:00
Scott W. Dunlop
61cf6545f7 gnatsd: init at 1.2.0 2018-08-19 11:48:27 -07:00
Joachim F
a287d3ece7
Merge pull request #45319 from Chiiruno/dev/hydron
hydron: 2018-08-15 -> 2018-08-18
2018-08-19 18:15:07 +00:00
Vladimír Čunát
b1548ce080
postgresql*: fixup build by a side-step
https://github.com/NixOS/nixpkgs/pull/44767#issuecomment-414066070
2018-08-19 09:07:00 +02:00
Jörg Thalheim
cfe738baf9
Merge pull request #45284 from orivej/msgpack
msgpack: rename from libmsgpack
2018-08-19 07:54:31 +01:00
adisbladis
31add5b183
Merge pull request #45190 from r-ryantm/auto-update/memcached
memcached: 1.5.9 -> 1.5.10
2018-08-19 14:20:52 +08:00
Okina Matara
7ce5ff0e56 hydron: 2018-08-15 -> 2018-08-18 2018-08-18 21:31:27 -05:00
Orivej Desh
65663f883c msgpack: rename from libmsgpack
The project does not use the name "libmsgpack". It variously uses "msgpack" and
"msgpack-c", and "msgpackc" for the name of the library.
2018-08-18 23:19:54 +00:00
Andreas Rammhold
5da1d01bf2
mariadb: 10.2.16 -> 10.2.17 (#45199)
Bump to latest stable version of the 10.2.x branch. Besides many bug fixes the
following security related issues have been fixed:
 - CVE-2018-3060
 - CVE-2018-3064
 - CVE-2018-3063
 - CVE-2018-3058
 - CVE-2018-3066

Release notes: https://mariadb.com/kb/en/library/mariadb-10217-release-notes/
2018-08-18 12:14:13 +02:00
Vladimír Čunát
c13bbda5b3
Merge #45146 into staging: postgresql security updates 2018-08-18 08:56:21 +02:00
Vladimír Čunát
14aa936ec5
Merge branch 'staging-next' into staging 2018-08-17 20:53:27 +02:00
Vladimír Čunát
209730208a
Merge branch 'staging-next' 2018-08-17 20:51:31 +02:00
Jörg Thalheim
0d941593d4
Merge pull request #42740 from dasJ/rainloop
rainloop: Init at 1.12.1
2018-08-17 16:05:21 +01:00
Vladimír Čunát
fe32659616
Merge #44235: add various lua modules 2018-08-17 14:23:14 +02:00
Vladimír Čunát
cbabebcc2e
Merge branch 'master' into staging-next
Hydra: ?compare=1473892
2018-08-17 13:45:21 +02:00
R. RyanTM
841d3a5da3 couchdb2: 2.1.2 -> 2.2.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/couchdb/versions.
2018-08-17 04:35:22 -07:00
R. RyanTM
a3a70227ba memcached: 1.5.9 -> 1.5.10
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/memcached/versions.
2018-08-16 22:24:47 -07:00
R. RyanTM
6e1d3cbe6b lighttpd: 1.4.49 -> 1.4.50
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/lighttpd/versions.
2018-08-17 06:46:21 +02:00
R. RyanTM
f82f933437 nsd: 4.1.23 -> 4.1.24
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/nsd/versions.
2018-08-16 20:36:01 -07:00
R. RyanTM
1758e15810 rpcbind: 0.2.4 -> 1.2.5
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/rpcbind/versions.
2018-08-16 13:51:41 -07:00
Daiderd Jordan
1d417c39f0
Merge pull request #45150 from r-ryantm/auto-update/shairport-sync
shairport-sync: 3.2 -> 3.2.1
2018-08-16 22:37:25 +02:00
R. RyanTM
f7bb35ffc9 shairport-sync: 3.2 -> 3.2.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/shairport-sync/versions.
2018-08-16 13:20:45 -07:00
Andreas Rammhold
5de601e0d2
postgresql93: 9.3.23 -> 9.3.24
Fixes CVE-2018-10915 & CVE-2018-10925

Release notes: https://www.postgresql.org/docs/current/static/release-9-3-24.html
2018-08-16 21:52:37 +02:00
Andreas Rammhold
2abb00e249
postgresql94: 9.4.18 -> 9.4.19
Fixes CVE-2018-10915 & CVE-2018-10925

Release notes: https://www.postgresql.org/docs/current/static/release-9-4-19.html
2018-08-16 21:52:37 +02:00
Andreas Rammhold
98d8db4c32
postgresql95: 9.5.13 -> 9.5.14
Fixes CVE-2018-10915 & CVE-2018-10925

Release notes: https://www.postgresql.org/docs/current/static/release-9-5-14.html
2018-08-16 21:52:30 +02:00
Andreas Rammhold
94c35894b0
postgresql96: 9.6.9 -> 9.6.10
Fixes CVE-2018-10915 & CVE-2018-10925

Release notes: https://www.postgresql.org/docs/current/static/release-9-6-10.html
2018-08-16 21:41:05 +02:00
Andreas Rammhold
1c4fc1dbd9
postgresql100: 10.4 -> 10.5
Fixes CVE-2018-10915 & CVE-2018-10925

Release notes: https://www.postgresql.org/docs/current/static/release-10-5.html
2018-08-16 21:38:29 +02:00
Timo Kaufmann
c0b9a7ec8b
Merge pull request #45132 from r-ryantm/auto-update/timescaledb
timescaledb: 0.10.1 -> 0.11.0
2018-08-16 20:54:29 +02:00
R. RyanTM
87db3da091 timescaledb: 0.10.1 -> 0.11.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/timescaledb/versions.
2018-08-16 11:35:39 -07:00
Jörg Thalheim
5bf43e47d3
Merge pull request #45098 from Chiiruno/dev/hydron
Fix hydron service, update hydron and meguca
2018-08-16 10:10:27 +02:00
Okina Matara
f1b9334c94 meguca: 2018-08-02 -> 2018-08-13 2018-08-15 22:22:11 -05:00
Okina Matara
4513bad4e7 hydron: 2018-07-30 -> 2018-08-15 2018-08-15 22:09:00 -05:00
Andreas Rammhold
67ea2c0ffe
samba: 4.7.6 -> 4.7.9
Version 4.7.9 is a security release. The versions 4.7.7 & 4.7.8 contain
numerous bug fixes.

This fixes a couple of security related issues:
 - https://www.samba.org/samba/security/CVE-2018-10858.html
 - https://www.samba.org/samba/security/CVE-2018-10918.html
 - https://www.samba.org/samba/security/CVE-2018-10919.html
 - https://www.samba.org/samba/security/CVE-2018-1139.html

Changelogs for the version upgrades can be found below.

 - https://www.samba.org/samba/history/samba-4.7.7.html
 - https://www.samba.org/samba/history/samba-4.7.8.html
 - https://www.samba.org/samba/history/samba-4.7.9.html
2018-08-15 23:39:16 +02:00
Christoph Hrdinka
72a35533e0 postgresql: fix tzdata path
Signed-off-by: Christoph Hrdinka <c.github@hrdinka.at>
2018-08-14 19:07:32 +01:00
Vladimír Čunát
ded9a4b1aa
Merge branch 'staging-next' into staging
Commits from master, conflict resolutions, etc.
2018-08-13 20:57:50 +02:00
Vladimír Čunát
5b0398dc36
Merge branch 'master' into staging-next
Conflicts: gobby and libinfinity - I took the hand-edited versions
instead of those resuting from the mass-replacement.

Hydra: ?compare=1473190
2018-08-13 20:43:59 +02:00
R. RyanTM
e0eb7d9ed7 cstore_fdw: 1.6.0 -> 1.6.1 (#44792)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/cstore_fdw/versions.
2018-08-13 14:35:53 +02:00
R. RyanTM
3d30b32ab2 shaarli: 0.9.7 -> 0.10.0 (#44693)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/shaarli/versions.
2018-08-13 14:29:32 +02:00
R. RyanTM
9cc733cfaf groonga: 8.0.2 -> 8.0.5 (#44783)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/groonga/versions.
2018-08-13 14:26:30 +02:00
R. RyanTM
c86a50b3cb redis: 4.0.10 -> 4.0.11 (#44684)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/redis/versions.
2018-08-12 20:03:37 +02:00
Vladimír Čunát
00df25ee57
Merge branch 'master' into staging-next
Hydra: ?compare=1472947
2018-08-12 10:33:41 +02:00
Jan Malakhovski
fed9423825 knot-dns: enable check, disable installcheck 2018-08-11 09:35:40 +00:00
Jan Malakhovski
7cd3de615d redis: disable tests 2018-08-11 09:35:36 +00:00
Jan Malakhovski
6c1a9d9d79 lighttpd: make tests run, but disable 2018-08-11 09:35:32 +00:00
Jan Malakhovski
f27dda4f55 xcbutilxrm: use checkInputs 2018-08-11 09:35:25 +00:00
Jan Malakhovski
2481ed88c7 myserver: use checkInputs 2018-08-11 09:35:25 +00:00
Jan Malakhovski
0449c1258c knot-resolver: use checkInputs 2018-08-11 09:35:25 +00:00
Pascal Wittmann
a34579e01e
Merge branch 'master' into add-missing-licenses
Conflicts:
	pkgs/tools/networking/network-manager/fortisslvpn.nix
2018-08-11 09:36:34 +02:00
Jan Malakhovski
b135329dc5 treewide: random cleanups 2018-08-10 12:56:31 +00:00
Yegor Timoshenko
e0b3d77ccd
Merge pull request #44823 from yegortimoshenko/20180809.194425/youtrack
youtrack: 2018.1.41051 -> 2018.2.42284
2018-08-10 13:00:49 +03:00
xeji
fc283bd41c
Merge pull request #44824 from yegortimoshenko/20180809.194746/prometheus
prometheus-node-exporter: work around prometheus/node_exporter#870
2018-08-10 00:07:16 +02:00
Yegor Timoshenko
c2839a8e1f
prometheus-node-exporter: add comment pointing to upstream bug 2018-08-10 00:52:21 +03:00
R. RyanTM
bbfed77bec mysql57: 5.7.22 -> 5.7.23 (#44740)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/mysql/versions.
2018-08-09 21:51:16 +02:00
Yorick van Pelt
369cc995d1 youtrack: 2018.1.41051 -> 2018.2.44329 2018-08-09 21:46:21 +03:00
Silvan Mosberger
81634e8498
uchiwa: fix build 2018-08-09 20:41:41 +02:00
Yegor Timoshenko
bdf2850262 prometheus-node-exporter: work around prometheus/node_exporter#870
See: https://github.com/prometheus/node_exporter/issues/870
2018-08-09 19:47:56 +03:00
Frederik Rietdijk
d9fa74ba78 Merge master into staging 2018-08-09 18:28:15 +02:00
Pascal Wittmann
af8cd3c74e
Merge branch 'master' into add-missing-licenses
Conflicts:
	pkgs/applications/version-management/subversion/default.nix
2018-08-09 13:10:27 +02:00
Christoph Hrdinka
962570e16d
Merge pull request #44737 from r-ryantm/auto-update/nsd
nsd: 4.1.22 -> 4.1.23
2018-08-09 10:55:44 +02:00
Frederik Rietdijk
786cbba7be
Merge pull request #44447 from NixOS/staging-next
Staging next
2018-08-09 09:04:03 +02:00
Vladimír Čunát
94e608d587
Merge branch 'master' into staging-next 2018-08-09 08:48:04 +02:00
Jörg Thalheim
33247bce39
Merge pull request #44797 from r-ryantm/auto-update/cadvisor
cadvisor: 0.29.1 -> 0.30.2
2018-08-09 07:39:35 +01:00
adisbladis
b6636d7393
Merge pull request #44805 from r-ryantm/auto-update/airsonic
airsonic: 10.1.1 -> 10.1.2
2018-08-09 13:53:03 +08:00
R. RyanTM
e4de4863c7 airsonic: 10.1.1 -> 10.1.2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/airsonic/versions.
2018-08-08 20:15:42 -07:00
R. RyanTM
a2fcc1f7a8 cadvisor: 0.29.1 -> 0.30.2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/cadvisor/versions.
2018-08-08 19:28:02 -07:00
Austin Seipp
8f8b7e1b86 h2o: fix compatibility with libressl 2.7+
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-08-08 18:59:22 -05:00
R. RyanTM
a890fe9b4a nsd: 4.1.22 -> 4.1.23
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/nsd/versions.
2018-08-08 10:36:40 -07:00
R. RyanTM
aec2a6d8e0 rt: 4.4.2 -> 4.4.3 (#44685)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rt/versions.
2018-08-08 15:33:41 +02:00
Robert Schütz
6342ab656c
Merge pull request #44446 from rnhmjoj/python2->python3
Make python{2,3} version explicit
2018-08-08 11:18:21 +02:00
xeji
90e72bb769
Merge pull request #44146 from Izorkin/tengine
tengine: init init at v2.2.2
2018-08-08 10:58:25 +02:00
adisbladis
1d4ee0a2ef
Merge pull request #44660 from r-ryantm/auto-update/zookeeper
zookeeper: 3.4.12 -> 3.4.13
2018-08-08 14:33:23 +08:00
R. RyanTM
68fdd6422b zookeeper: 3.4.12 -> 3.4.13
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/zookeeper/versions.
2018-08-07 20:39:57 -07:00
rnhmjoj
0b488f49fd
varnish: use python2 2018-08-08 02:20:55 +02:00
rnhmjoj
1ba3d8b7d1
mailman: use python2 2018-08-08 02:20:54 +02:00
rnhmjoj
c8784f9cd8
searx: use python3 2018-08-08 02:20:54 +02:00
rnhmjoj
cdb3e689f6
matrix-synapse: use python2 2018-08-08 02:20:54 +02:00
Austin Seipp
6220a31908 clickhouse: 18.1.0 -> 18.5.1, fix build and use ninja
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-08-07 18:40:39 -05:00
Janne Heß
022b81f3f8 tt-rss-theme-feedly: Init at 1.4.0 (#44634) 2018-08-07 23:33:15 +02:00
Uli Baum
5a25e17628 tengine: fix build with gcc7 2018-08-07 22:02:39 +02:00
Janne Heß
f9980af8ac tt-rss-plugin-tumblr-gdpr: Init at 1.2 (#44620) 2018-08-07 21:36:15 +02:00
Janne Heß
f3a095dbd2 rainloop: Init at 1.12.1 2018-08-07 19:01:39 +02:00
xeji
1924e14d2e
Merge pull request #44615 from fuzzy-id/cassandra-version-bumps
Cassandra version bumps
2018-08-07 18:21:53 +02:00
Thomas Bach
31e11bdd60 cassandra: rewrote service from scratch
Adds a replacement for the previously broken
`services.database.cassandra` with tests for a multi-node setup.
2018-08-07 14:48:43 +00:00
Thomas Bach
2fb2c856a1 cassandra: 3.11.2 -> 3.11.3 2018-08-07 16:21:53 +02:00
Thomas Bach
4ad52535b3 cassandra: 3.0.15 -> 3.0.17 2018-08-07 16:21:52 +02:00
Thomas Bach
145b026fb4 cassandra: 2.2.11 -> 2.2.13 2018-08-07 16:21:51 +02:00
Thomas Bach
d3661c678e cassandra: 2.1.19 -> 2.1.20 2018-08-07 16:21:51 +02:00
Robert Schütz
db436734cd home-assistant: 0.75.1 -> 0.75.2 2018-08-06 21:23:17 +02:00
Pascal Wittmann
f22ffa6b6a
morty: add license
see issue #43716
2018-08-06 12:43:58 +02:00
Pascal Wittmann
7baa750efc
riak: add license
see issue #43716
2018-08-06 12:26:03 +02:00
Michiel Leenaars
e61dae0f0f matterbridge: 1.7.1 -> 1.11.0 2018-08-06 12:25:25 +02:00
Vladimír Čunát
f504af072b
Merge branch 'master' into staging-next
There's been some large rebuild on master.
I don't really have time ATM to find what it was.
2018-08-06 12:07:37 +02:00
Pascal Wittmann
f7be21f4c9
Merge branch 'master' into add-missing-licenses
Conflicts:
	pkgs/development/libraries/exiv2/default.nix
        Set license to gpl2Plus
2018-08-06 12:04:52 +02:00
Uli Baum
6820e2f0dd mpd: don't use smbclient alias
didn't eval on Hydra as release.nix doesn't allow aliases, see #44299
Use samba instead.
2018-08-06 10:07:20 +02:00
Izorkin
5fce5fadf5 tengine: init init at v2.2.2 2018-08-06 08:11:03 +03:00
Cray Elliott
4c45016c29 Revert "mariadb: 10.2.16 -> 10.3.8"
This reverts commit 00ab5c5b6a.

The commit listed broke darwin and held up Hydra. sorry about that!
2018-08-05 20:12:18 -07:00
xeji
176891c0ad
Merge pull request #44467 from Izorkin/nginx-modules
Nginx modules
2018-08-05 22:20:05 +02:00
Robert Schütz
8dc20dce0a
home-assistant: 0.74.2 -> 0.75.1 (#44500) 2018-08-05 22:13:16 +02:00
ajs124
8910795eee ejabberd: 18.01 -> 18.06 (#44158)
ejabberd switched from imagemagick to eimp, which loads libpng, libjpeg
and libwebp at runtime. These were therefore added as dependencies and
the relevant binary was wrapped to be able to find them.
2018-08-05 18:02:40 +02:00
Pascal Wittmann
85ea1c2f4c
diod: add license
see issue #43716
2018-08-05 16:26:02 +02:00
Austin Seipp
aa79ae0c64 foundationdb: install python bindings
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-08-04 16:56:16 -05:00
Johannes Frankenau
c481117673 nginxMainline: 1.15.1 -> 1.15.2 (#44431) 2018-08-04 21:06:35 +02:00
Izorkin
e0de8354b9 nginxModules.lua-upstream: init at v0.07 2018-08-04 20:54:36 +03:00
Izorkin
29b3e11541 nginxModules.url: init at rev 9299816 2018-08-04 20:54:36 +03:00
Izorkin
a5674cebb9 nginxModules.sysguard: init at rev e512897 2018-08-04 20:54:35 +03:00
Izorkin
9100091f3f nginxModules.stream-sts: init at v0.1.1 2018-08-04 20:54:35 +03:00
Izorkin
9958868dfd nginxModules.sts: init at v0.1.1 2018-08-04 20:54:35 +03:00
Pascal Wittmann
bd899f95ed
skydns: add license
see issue #43716
2018-08-04 18:34:51 +02:00
Austin Seipp
6b0451c060 foundationdb60: 6.0.3pre2446 -> 6.0.4pre2497
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-08-04 09:47:41 -05:00
Austin Seipp
d8652e9fc2 foundationdb52: 5.2.6 -> 5.2.8
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-08-04 09:47:41 -05:00
Pascal Wittmann
e5ef637fc2
vsftpd: add license
see issue #43716
2018-08-04 16:09:40 +02:00
Pascal Wittmann
0fa1ffd17f
xlsfonts: set license in overrides 2018-08-04 16:04:51 +02:00
Tuomas Tynkkynen
008fd5fcf5 Merge remote-tracking branch 'upstream/master' into staging 2018-08-04 15:17:42 +03:00
Frederik Rietdijk
699e0e50b7 Merge master into staging-next 2018-08-04 11:43:54 +02:00
John Ericson
7a337cde31
Merge pull request #44423 from obsidiansystems/configureFlags-cleanup
treewide: All configureFlags are lists
2018-08-03 17:49:01 -04:00
John Ericson
f0d6b385d1 treewide: Make all the rest of configureFlags 2018-08-03 17:06:03 -04:00
John Ericson
db965063b3 treewide: Make configureFlags lists 2018-08-03 17:06:03 -04:00
John Ericson
85a9913edd treewide: Make more complicated configureFlags lists 2018-08-03 17:06:03 -04:00
xeji
c9f3382a39
Merge pull request #43934 from jfrankenau/mpd-smb
mpd: add nfs and smb support
2018-08-03 21:59:30 +02:00
Johannes Frankenau
b9234ea49c nixos/mpd: allow storage plugins in musicDirectory 2018-08-03 21:36:38 +02:00
John Ericson
ebbd6f3471
Merge pull request #44083 from dingxiangfei2009/cross-compiling-postgresql
Allow postgresql to cross compile
2018-08-03 14:44:55 -04:00
Okina Matara
6de26d6647 meguca: 2018-07-01 -> 2018-08-02 2018-08-03 10:43:28 -05:00
Okina Matara
74a57e24d0 hydron: 2018-07-15 -> 2018-07-30 2018-08-03 10:43:00 -05:00
David Smith
806ab02d95 elasticsearchPlugins.discovery-ec2: init at 6.3.2 2018-08-03 11:50:09 +01:00
Jörg Thalheim
19fb8c7c6c elasticsarchPlugins.search_guard: 0.5 -> 6.3.2-22.3 2018-08-03 11:50:09 +01:00
Jörg Thalheim
dab5fd5f56 elasticsearchPlugins.elasticsearch_analysis_lemmagen: 0.1 -> 6.3.2 2018-08-03 11:50:08 +01:00
Jörg Thalheim
0bbf90e1b4 elasticsearchPlugins.elasticsearch_kopf: remove
deprecated by upstream, https://github.com/lmenezes/cerebro is recommend
instead (but not packaged in nixpkgs)
2018-08-03 11:50:08 +01:00
Jörg Thalheim
5d3b75ab5d elasticsearchPlugins.elasticsearch_http_basic: remove
Deprecated by upstream, search_guard was recommended instead.
2018-08-03 11:50:08 +01:00
Jörg Thalheim
fa26b59091 elasticsearchPlugins.{river_jdbc,river_twitter}: remove
River plugins are no longer supported in elasticsearch.
2018-08-03 11:50:07 +01:00
Jörg Thalheim
cba348c561 elasticsearchPlugins: updated for elasticsearch6 2018-08-03 11:50:07 +01:00
Jörg Thalheim
1b2b62ba79 elasticsearch2: drop unsupported version 2018-08-03 11:50:06 +01:00
Jörg Thalheim
bedf471a08 elasticsearch6: new default version 2018-08-03 11:50:04 +01:00
Jörg Thalheim
f644675bc9 elasticsearch: drop 1.7.2 (not supported upstream) 2018-08-03 10:01:01 +01:00
Orivej Desh
687771ced6 clickhouse: 1.1.54385 -> 18.1.0 2018-08-02 23:29:41 +00:00
John Ericson
f539c30095 postgresql: Fix nits after cross fixes 2018-08-02 18:48:06 -04:00
John Ericson
89c21fce3f Merge commit 'master' into staging 2018-08-02 16:13:33 -04:00
Pascal Wittmann
750fae6539
xlsfonts: add license
see issue #43716
2018-08-02 16:07:30 +02:00
Vladimír Čunát
1895354eed
knot-resolver: 2.4.0 -> 2.4.1 (security)
Fixes CVE-2018-10920 and some less important things.
https://lists.nic.cz/pipermail/knot-resolver-announce/2018/000002.html
2018-08-02 14:36:20 +02:00
Anders Lundstedt
891fb1d5e0 Plex: 1.13.0 -> 1.13.4 (#44327) 2018-08-02 09:17:31 +02:00
Cray Elliott
00ab5c5b6a mariadb: 10.2.16 -> 10.3.8 2018-08-01 20:57:08 -07:00
Franz Pletz
b5477ab37b
freeradius: add rest module and multiple outputs 2018-08-01 22:24:47 +02:00
Jaka Hudoklin
e4ca48c224 confluent: init at 4.1.1-2.11 (#43137) 2018-08-01 21:35:42 +02:00
Tuomas Tynkkynen
6260fc8b8e Merge remote-tracking branch 'upstream/master' into staging 2018-08-01 19:06:09 +03:00
Pascal Bach
115c963300 minio: 2018-05-11T00-29-24Z -> 2018-07-31T02-11-47Z 2018-08-01 00:36:44 +02:00
Frederik Rietdijk
d56b54cb3c Merge master into staging 2018-07-31 13:19:20 +02:00
Ding Xiang Fei
40c2bf6e42 Merge branch 'master' into cross-compiling-postgresql 2018-07-31 11:24:11 +08:00
Ding Xiang Fei
003055a670 pass NIX_CFLAGS_COMPILE through mkDerivation instead 2018-07-31 11:23:17 +08:00
John Ericson
9fb6462817 Merge commit master into staging 2018-07-30 15:33:01 -04:00
Vladimír Čunát
2d75c47eab
knot-resolver: extraFeatures -> +deps for 'http' module
The module feels as a toy mostly, but why not in non-default setup...
2018-07-30 18:49:11 +02:00
Robert Schütz
25fd46d102 home-assistant: 0.74.0 -> 0.74.2 2018-07-30 18:14:10 +02:00
Jörg Thalheim
86d7d96da2
Merge pull request #44030 from ajs124/exim_mysql_dovecot
exim: add optional support for MySQL and the Dovecot authenticator
2018-07-30 11:48:28 +01:00
Jörg Thalheim
9cfc9de70f
Merge pull request #44161 from Izorkin/nginx-modules
Nginx modules
2018-07-30 11:39:10 +01:00
Jörg Thalheim
9250c264d8
Merge pull request #44112 from ajs124/nextcloud_13_0_5
nextcloud: 13.04 -> 13.05
2018-07-30 10:27:30 +01:00
Ding Xiang Fei
c0ca3e36d6 be explicit on choice of uuid library 2018-07-30 15:47:10 +08:00
Vladimír Čunát
848fa35c24
Merge #43378 into staging: mesa: enableTextureFloats 2018-07-30 08:16:20 +02:00
Ding Xiang Fei
e8682cafd6 always build against tzdata 2018-07-30 11:54:57 +08:00
Ding Xiang Fei
56aa3b488c Merge branch 'master' into cross-compiling-postgresql 2018-07-30 11:47:36 +08:00
Jan Tojnar
63ef1e9381
Merge pull request #43160 from jtojnar/pulseaudio-12
pulseaudio: 11.1 → 12.2
2018-07-29 22:40:54 +02:00
Robert Schütz
414167b213 home-assistant: 0.73.2 -> 0.74.0 (#43964) 2018-07-29 21:49:46 +02:00
Jan Tojnar
d69f3a2a43
pulseaudio: 11.1 → 12.2
GConf was finally removed in favour of GSettings.

Removes patches that were upstreamed and caps-fix.patch, which is
not needed since f1d465f429.
2018-07-29 21:19:45 +02:00
Ding Xiang Fei
894705161c use NIX_CFLAGS_COMPILE 2018-07-29 21:21:46 +08:00
Ding Xiang Fei
3a9d8a1ab4 Merge branch 'master' into cross-compiling-postgresql 2018-07-29 20:35:52 +08:00
Izorkin
07e7966d3b nginxModules.upstream-tarantool: init at v2.7 2018-07-29 14:54:55 +03:00
Izorkin
ca37481d25 nginxModules.push-stream: init at v0.5.4 2018-07-29 14:54:47 +03:00
Izorkin
aa68f56c0a nginxModules.vts: init at v0.1.18 2018-07-29 14:54:08 +03:00
Jörg Thalheim
bee7a67323
Merge pull request #44159 from ajs124/biboumi_8_3
biboumi: 7.2 -> 8.3
2018-07-29 12:49:04 +01:00
Lluís Batlle i Rossell
f54b387b63 Merge remote-tracking branch 'central/master' into viric_clean 2018-07-28 19:25:14 +02:00
Andreas Rammhold
782342cf30
Merge pull request #43888 from Ekleog/synapse-0.33.0
matrix-synapse: 0.31.2 -> 0.33.0
2018-07-28 10:13:52 +02:00
Frederik Rietdijk
5cd5e74177
Merge pull request #44152 from georgewhewell/add-sabyenc
pythonPackages.sabyenc: init at 2.3.3
2018-07-28 09:43:07 +02:00
Silvan Mosberger
5edb09c3db
Merge pull request #40625 from romildo/fix.xkeyboard-config
xkeyboard-config: enable xkb rules symlink
2018-07-28 04:37:46 +02:00
Bas van Dijk
ebcdb822f8 elk: 6.2.4 -> 6.3.2
* The ELK stack is upgraded to 6.3.2.

* `elasticsearch6`, `logstash6` and `kibana6` now come with X-Pack which is
  a suite of additional features. These are however licensed under the unfree
  "Elastic License".

* Fortunately they also provide OSS versions which are now packaged
  under: `elasticsearch6-oss`, `logstash6-oss` and `kibana6-oss`.
  Note that the naming of the attributes is consistent with upstream.

* The test `nix-build nixos/tests/elk.nix -A ELK-6` will test the OSS
  version by default. You can also run the test on the unfree ELK using:
  `NIXPKGS_ALLOW_UNFREE=1 nix-build nixos/tests/elk.nix -A ELK-6 --arg enableUnfree true`
2018-07-28 00:01:31 +02:00
georgewhewell
cb20776886
sabnzbd: add sabyenc to python env 2018-07-27 19:02:11 +01:00
ajs124
3d6e38234d biboumi: 7.2 -> 8.3
also update catch from 1.5.6 to 2.2.1
2018-07-27 19:56:17 +02:00
Ding Xiang Fei
a998a49ee4 reduce diffs due to reordering 2018-07-27 14:19:05 +08:00
Ding Xiang Fei
a33d4ed984 Merge branch 'master' into cross-compiling-postgresql 2018-07-27 14:13:12 +08:00
Ding Xiang Fei
b2104d93ff point to the right libxml2 header folder 2018-07-27 14:12:25 +08:00
Austin Seipp
f8e8ecde51 foundationdb60: 6.0.2pre2430 -> 6.0.3pre2446
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-07-26 18:58:40 -05:00
Austin Seipp
a14a75a567 foundationdb: include debug info in all builds
This puts the debug information in a separate output, as expected. This allows
meaningful symbol names to appear in DWARF-based tools like perf and gdb.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-07-26 18:44:49 -05:00
Ding Xiang Fei
1d39f2efee Merge branch 'master' into cross-compiling-postgresql 2018-07-26 20:36:33 +08:00
ajs124
6b8a2a79cf nextcloud: 13.04 -> 13.05 2018-07-26 03:08:24 +02:00
WilliButz
a0383ffec8 grafana: 5.2.1 -> 5.2.2 2018-07-25 17:47:50 +02:00
Ding Xiang Fei
5c7cfbc0f1 allow postgresql cross compiling 2018-07-25 16:32:42 +08:00
Frederik Rietdijk
099c13da1b Merge staging-next into master (#44009)
* substitute(): --subst-var was silently coercing to "" if the variable does not exist.

* libffi: simplify using `checkInputs`

* pythonPackges.hypothesis, pythonPackages.pytest: simpify dependency cycle fix

* utillinux: 2.32 -> 2.32.1

https://lkml.org/lkml/2018/7/16/532

* busybox: 1.29.0 -> 1.29.1

* bind: 9.12.1-P2 -> 9.12.2

https://ftp.isc.org/isc/bind9/9.12.2/RELEASE-NOTES-bind-9.12.2.html

* curl: 7.60.0 -> 7.61.0

* gvfs: make tests run, but disable

* ilmbase: disable tests on i686. Spooky!

* mdds: fix tests

* git: disable checks as tests are run in installcheck

* ruby: disable tests

* libcommuni: disable checks as tests are run in installcheck

* librdf: make tests run, but disable

* neon, neon_0_29: make tests run, but disable

* pciutils: 3.6.0 -> 3.6.1

Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/pciutils/versions.

* mesa: more include fixes

mostly from void-linux (thanks!)

* npth: 1.5 -> 1.6

minor bump

* boost167: Add lockfree next_prior patch

* stdenv: cleanup darwin bootstrapping

Also gets rid of the full python and some of it's dependencies in the
stdenv build closure.

* Revert "pciutils: use standardized equivalent for canonicalize_file_name"

This reverts commit f8db20fb3a.
Patching should no longer be needed with 3.6.1.

* binutils-wrapper: Try to avoid adding unnecessary -L flags

(cherry picked from commit f3758258b8895508475caf83e92bfb236a27ceb9)
Signed-off-by: Domen Kožar <domen@dev.si>

* libffi: don't check on darwin

libffi usages in stdenv broken darwin. We need to disable doCheck for that case.

* "rm $out/share/icons/hicolor/icon-theme.cache" -> hicolor-icon-theme setup-hook

* python.pkgs.pytest: setupHook to prevent creation of .pytest-cache folder, fixes #40273

When `py.test` was run with a folder as argument, it would not only
search for tests in that folder, but also create a .pytest-cache folder.
Not only is this state we don't want, but it was also causing
collisions.

* parity-ui: fix after merge

* python.pkgs.pytest-flake8: disable test, fix build

* Revert "meson: 0.46.1 -> 0.47.0"

With meson 0.47.0 (or 0.47.1, or git)
things are very wrong re:rpath handling
resulting in at best missing libs but
even corrupt binaries :(.

When we run patchelf it masks the problem
by removing obviously busted paths.
Which is probably why this wasn't noticed immediately.

Unfortunately the binary already
has a long series of paths scribbled
in a space intended for a much smaller string;
in my testing it was something like
lengths were 67 with 300+ written to it.

I think we've reported the relevant issues upstream,
but unfortunately it appears our patches
are what introduces the overwrite/corruption
(by no longer being correct in what they assume)

This doesn't look so bad to fix but it's
not something I can spend more time on
at the moment.

--

Interestingly the overwritten string data
(because it is scribbled past the bounds)
remains in the binary and is why we're suddenly
seeing unexpected references in various builds
-- notably this is is the reason we're
seeing the "extra-utils" breakage
that entirely crippled NixOS on master
(and probably on staging before?).

Fixes #43650.

This reverts commit 305ac4dade.

(cherry picked from commit 273d68eff8f7b6cd4ebed3718e5078a0f43cb55d)
Signed-off-by: Domen Kožar <domen@dev.si>
2018-07-24 15:04:48 +01:00
lewo
f99f42c473
Merge pull request #44042 from flokli/træfik-1.6.5
traefik: 1.6.2 -> 1.6.5
2018-07-24 10:05:24 +02:00
Florian Klink
d70c04fc9e traefik: 1.6.2 -> 1.6.5 2018-07-24 03:00:58 +02:00
ajs124
3a14eb0e12 exim: add optional support for MySQL and the Dovecot authenticator 2018-07-23 23:00:50 +02:00
Simon Lackerbauer
2799d11eb0
atlassian-jira: 7.9.2 -> 7.11.0 2018-07-23 15:58:04 +02:00
Lluís Batlle i Rossell
66d7126255 Take me (viric) out of most maintenance
Since years I'm not maintaining anything of the list below other
than some updates when I needed them for some reason. Other people
is doing that maintenance on my behalf so I better take me out but
for very few packages. Finally!
2018-07-22 21:50:19 +02:00
Anton-Latukha
8f101cce83 rm maintainer eduarrrd from packages, no activity > year 2018-07-22 21:41:48 +03:00
Pascal Wittmann
1ba7fa72e7
axis2: add license
see issue #43716
2018-07-22 17:35:01 +02:00
Frederik Rietdijk
3209775495 Merge master into staging 2018-07-22 11:14:41 +02:00
Frederik Rietdijk
6c72782d36 Merge staging-next into master 2018-07-22 11:04:28 +02:00
volth
cc55a3ebcb treewide: fix build with disallowed aliases (#43872)
fixes build with disallowed aliases
2018-07-21 22:03:24 -04:00
Johannes Frankenau
fbcc4daff7 mpd: add nfs and smb support 2018-07-21 22:32:20 +02:00
Frederik Rietdijk
ad47d658d1 Merge master into staging-next 2018-07-21 19:43:53 +02:00
Jörg Thalheim
a8f2d1f92c
Merge pull request #43826 from ryantm/mattermost
mattermost: 5.0.0 -> 5.1.0
2018-07-21 16:52:31 +01:00
Jörg Thalheim
218298b30f
Merge branch 'master' into unused5 2018-07-21 15:41:22 +01:00
Léo Gaspard
182b7f63af
matrix-synapse: 0.31.2 -> 0.33.0 2018-07-21 21:56:46 +09:00
Frederik Rietdijk
8424ac61a9
Merge pull request #43862 from volth/unused3
[bot] treewide: remove unused 'args@' in lambdas
2018-07-21 11:14:44 +02:00
Frederik Rietdijk
251a0a9a86
Merge pull request #43860 from volth/unused2
treewide: remove unused 'inherit' in let blocks
2018-07-21 11:13:36 +02:00
volth
52f53c69ce pkgs/*: remove unreferenced function arguments 2018-07-21 02:48:04 +00:00
Austin Seipp
f517b5a8dd foundationdb: bump to 5.2.6, 6.0.2-prelease
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-07-20 17:57:44 -05:00
volth
dda95bae35 [bot] treewide: remove unused 'args@' in lambdas 2018-07-20 19:54:05 +00:00
volth
6d2857a311 [bot] treewide: remove unused 'inherit' in let blocks 2018-07-20 19:38:19 +00:00
Frederik Rietdijk
1a6af9f88e
Merge pull request #43857 from volth/unused
[bot] treewide: remove unreferenced code
2018-07-20 21:06:32 +02:00
volth
87f5930c3f [bot]: remove unreferenced code 2018-07-20 18:48:37 +00:00
Silvan Mosberger
446ec6df2d postgresql100: 10.3 -> 10.4
Fixes CVE-2018-1115

Release notes: https://www.postgresql.org/docs/10/static/release-10-4.html
2018-07-20 11:50:41 -05:00
Silvan Mosberger
d066cecd7d postgresql96: 9.6.8 -> 9.6.9
Fixes CVE-2018-1115

Release notes: https://www.postgresql.org/docs/10/static/release-9-6-9.html
2018-07-20 11:50:41 -05:00
Silvan Mosberger
ac5fdda5a6 postgresql95: 9.5.12 -> 9.5.13
Release notes: https://www.postgresql.org/docs/10/static/release-9-5-13.html
2018-07-20 11:50:41 -05:00
Silvan Mosberger
3d16732102 postgresql94: 9.4.17 -> 9.4.18
Release notes: https://www.postgresql.org/docs/10/static/release-9-4-18.html
2018-07-20 11:50:41 -05:00
Silvan Mosberger
73aaf63fb1 postgresql93: 9.3.22 -> 9.3.23
Release notes: https://www.postgresql.org/docs/10/static/release-9-3-23.html
2018-07-20 11:50:41 -05:00
Vladimír Čunát
491f205332
knot-dns: libidn -> libidn2
It's only used by the `kdig` tool.
2018-07-20 15:38:15 +02:00
Graham Christensen
7fdba7c74e
Merge pull request #43834 from ryantm/https2
treewide: http -> https
2018-07-19 21:31:36 -04:00
Ryan Mulligan
df8062c45b treewide: http -> https 2018-07-19 18:12:04 -07:00
Frederik Rietdijk
8213ff161c Merge master into staging-next 2018-07-19 18:24:24 +02:00
Ryan Mulligan
b244d92f33 mattermost: 5.0.0 -> 5.1.0 2018-07-19 09:21:30 -07:00
Robert Schütz
e7e5aaa0b9
Merge pull request #43782 from Ma27/fix-simpleldap-python3
python3Packages.simpleldap: remove
2018-07-19 17:54:13 +02:00
Maximilian Bosch
0adca53c79
inginious: remove
Fallout of 9db7f15ea3ce57eee25458daf87cce7a04ea98b2 which removed
simpleldap.

@layus suggests to remove:

* https://github.com/NixOS/nixpkgs/pull/43782#issuecomment-406186881
* https://github.com/NixOS/nixpkgs/pull/31975#issuecomment-346647857
2018-07-19 17:31:40 +02:00
Peter Simons
1374431bdc
Merge pull request #43788 from r-ryantm/auto-update/apache-httpd
apacheHttpd: 2.4.33 -> 2.4.34
2018-07-19 10:53:32 +02:00
Matthew Bauer
dc6912fa9e
Merge pull request #43692 from matthewbauer/disallow-aliases-in-release
Avoid using aliases, disallow aliases in release
2018-07-19 00:30:49 -04:00
Matthew Bauer
76999cc40e treewide: remove aliases in nixpkgs
This makes the command ‘nix-env -qa -f. --arg config '{skipAliases =
true;}'’ work in Nixpkgs.

Misc...

- qtikz: use libsForQt5.callPackage

  This ensures we get the right poppler.

- rewrites:

  docbook5_xsl -> docbook_xsl_ns
  docbook_xml_xslt -> docbook_xsl

diffpdf: fixup
2018-07-18 23:25:20 -04:00
Will Dietz
c74045c47a gpm: patch to fix w/musl, good for general use 2018-07-18 22:17:44 -05:00
R. RyanTM
2c2f107a96 apacheHttpd: 2.4.33 -> 2.4.34
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/apache-httpd/versions.
2018-07-18 17:24:59 -07:00
R. RyanTM
48aa5f3486 arangodb: 3.3.11 -> 3.3.12 (#43485)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/arangodb/versions.
2018-07-18 22:35:07 +02:00
Silvan Mosberger
810f91f46d
Merge pull request #43308 from Chiiruno/dev/hydron
hydron: init at 2018-07-11
2018-07-18 22:10:11 +02:00
Okina Matara
920f1bc190 hydron: init at 2018-07-15 2018-07-18 13:17:42 -05:00
Robert Schütz
7682a1f0ec home-assistant: 0.73.1 -> 0.73.2
This fixes a security hole allowing man in the middle attacks.
See https://www.home-assistant.io/blog/2018/07/16/release-73-2/.
2018-07-17 14:36:47 +02:00
Will Dietz
d6a9a93a62 bind: 9.12.1-P2 -> 9.12.2
https://ftp.isc.org/isc/bind9/9.12.2/RELEASE-NOTES-bind-9.12.2.html
2018-07-16 21:00:30 -05:00
Frederik Rietdijk
6d339e5863 Merge staging-next into staging 2018-07-16 17:14:44 +02:00
R. RyanTM
705b807c7c jackett: 0.8.1209 -> 0.9.1 (#43467)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/jackett/versions.
2018-07-16 10:54:30 +02:00
Yegor Timoshenko
c9a1e46085 xkbcomp: 1.4.0 -> 1.4.2 (#43589) 2018-07-16 10:41:07 +02:00
Vaibhav Sagar
2b9deeb0a9 aerospike: fix ofborg eval (#43603)
s/maintainer/maintainers/
2018-07-16 10:08:55 +02:00
Uli Baum
8e5dbacd85 aerospike: fix ofborg eval
platforms = [ "x86_64-linux" ] broke ofborg eval of nixos manual
because the aerospike module references this package.
Fixed for now by setting platforms to platforms.linux,
even if aarch64 isn't really supported.
2018-07-16 08:45:31 +02:00
Wael M. Nasreddine
fd2448b2e6 aerospike: init at 4.2.0.4
Co-authored-by: Volth <volth@webmaster.ms>
2018-07-16 04:21:47 +00:00
R. RyanTM
f68920176c shairport-sync: 3.1.7 -> 3.2 2018-07-16 04:07:06 +00:00
Izorkin
7307c35f30 mariadb: 10.2.15 -> 10.2.16 2018-07-16 03:53:32 +00:00
Izorkin
e76f382c75 nginxModules: sorting of modules alphabetically 2018-07-16 03:44:32 +00:00
Franz Pletz
4fbc423b77
caddy: 0.10.12 -> 0.11.0 2018-07-16 00:04:43 +02:00
Franz Pletz
0a5186a7cb
Merge pull request #43580 from Izorkin/nginx-modules
Update nginx modules
2018-07-15 21:56:09 +00:00
Izorkin
3a5d104a33 nginxModules.develkit: update to v0.3.1rc1 2018-07-16 00:25:36 +03:00
Izorkin
75b2940145 nginxModules.upstream-check: update to rev 9aecf15 2018-07-16 00:25:20 +03:00
Izorkin
c96d49733a nginxModules.statsd: update to rev b970e40 2018-07-16 00:25:01 +03:00
Izorkin
04eb0731fb nginxModules.pam: update to v1.5.1 2018-07-16 00:24:45 +03:00
Izorkin
eff0def7dc nginxModules.set-misc: update to v0.32 2018-07-16 00:24:27 +03:00
Izorkin
ea52907348 nginxModules.lua: update to v0.10.13 2018-07-16 00:24:14 +03:00
Izorkin
8584845aa1 nginxModules.moreheaders: update to v0.33 2018-07-16 00:23:41 +03:00
Izorkin
a16eee878f nginxModules.ipscrub: update to v1.0.1 2018-07-16 00:22:54 +03:00
Izorkin
11653f8e6b nginxModules.sla: init at 7778f01 2018-07-15 20:29:57 +00:00
Franz Pletz
0b2b4b8c4e
charybdis: 3.5.5 -> 4.1 2018-07-15 21:41:46 +02:00
Franz Pletz
29da51c8e9
mpd: 0.20.18 -> 0.20.20 2018-07-15 21:41:46 +02:00
Franz Pletz
3239ef84ea
nginxMainline: 1.13.12 -> 1.15.1 2018-07-15 21:41:45 +02:00
Franz Pletz
1638d91d7a
matterircd: 0.16.5 -> 0.18.2 2018-07-15 21:41:45 +02:00
Franz Pletz
27b8072a98
prometheus-alertmanager: 0.14.0 -> 0.15.1 2018-07-15 21:41:45 +02:00
Izorkin
bfb393f55e nginx-fancyindex: init at 0.4.3 2018-07-15 20:07:34 +03:00
Robert Schütz
18774d4173 Merge branch 'master' into staging 2018-07-15 12:31:18 +02:00
xeji
0ef2389327
Merge pull request #43315 from ryantm/cpan
treewide: replace search.cpan.org with metacpan.org
2018-07-15 11:51:58 +02:00
Ryan Mulligan
220618ef9c perlPackages: remove search.cpan.org; add metacpan.org default homepage
https://www.perl.com/article/saying-goodbye-to-search-cpan-org/

maybe one operation less

..with unifying recursiveUpdate and first //

although not tested

fix whitespace
2018-07-14 18:49:00 -07:00
Austin Seipp
6a1b65b606 timescaledb: 0.9.2 -> 0.10.1
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-07-14 12:53:36 -05:00
Austin Seipp
8f21a16861 timescaledb: create $out/bin in order to work around a stupid bug
See #22653 or #38469. 'manveru' reported this on IRC again, but unfortunately a
real fix requires a bit more work. In the mean time, this plugs the leak with a
bit of duct tape.

'timescale' is an often desired extension and, in the mean time, this
workaround means you also do not have to install something like postgis (with a
large dependency set) into your closure to get things to work.

Ideally in the mean time, *all* postgresql extensions should have $out/bin
created for them... Doing this will require more ongoing work, or a proper
fix to the buildEnv nonsense going on.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-07-14 12:50:20 -05:00
Frederik Rietdijk
4b7f0903ca
Merge pull request #43477 from r-ryantm/auto-update/dnsdist
dnsdist: 1.3.0 -> 1.3.2
2018-07-13 18:48:28 +02:00
Frederik Rietdijk
1dfe802f2a
Merge pull request #43475 from r-ryantm/auto-update/couchdb
couchdb2: 2.1.1 -> 2.1.2
2018-07-13 18:48:14 +02:00
R. RyanTM
b067f54661 dnsdist: 1.3.0 -> 1.3.2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/dnsdist/versions.
2018-07-13 04:36:26 -07:00
R. RyanTM
20c9b4727c couchdb2: 2.1.1 -> 2.1.2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/couchdb/versions.
2018-07-13 04:16:11 -07:00
Pascal Wittmann
b85d1f638a
xeyes: 1.1.1 -> 1.1.2 2018-07-12 22:18:03 +02:00
Silvan Mosberger
b84e951f92
Merge pull request #43232 from Infinisil/update/xkeyboardconfig
xorg.xkeyboardconfig: 2.23.1 -> 2.24, Fixes issue with polish symbols syntax
2018-07-12 00:14:50 +02:00
Jaka Hudoklin
6cc50b144a prometheus-jmx-httpserver: init at 0.10 (#43336)
prometheus-jmx-httpserver: init at 0.10
2018-07-11 21:17:09 +02:00
R. RyanTM
2d1d17032b dovecot: 2.3.2 -> 2.3.2.1 (#43351)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/dovecot/versions.
2018-07-11 17:51:32 +02:00
Eelco Dolstra
c93123afb6
Merge pull request #42937 from gavinrogers/init_holochain
holochain-go: init at 0.1.0-alpha
2018-07-11 17:46:30 +02:00
Frederik Rietdijk
45a4626dfd
Merge pull request #43337 from r-ryantm/auto-update/memcached
memcached: 1.5.8 -> 1.5.9
2018-07-11 12:19:02 +02:00
R. RyanTM
2b81b44b2a memcached: 1.5.8 -> 1.5.9
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/memcached/versions.
2018-07-11 02:52:03 -07:00
Frederik Rietdijk
c93c788cde
Merge pull request #43317 from r-ryantm/auto-update/uwsgi
uwsgi: 2.0.17 -> 2.0.17.1
2018-07-11 11:37:34 +02:00
adisbladis
04c26d79c2
coredns: Fix hash 2018-07-11 16:55:17 +08:00
R. RyanTM
37962d0256 uwsgi: 2.0.17 -> 2.0.17.1
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/uwsgi/versions.
2018-07-10 21:21:55 -07:00
Vladimír Čunát
2698bb461f
knot-dns: 2.6.7 -> 2.6.8 (maintenance)
https://lists.nic.cz/pipermail/knot-dns-users/2018-July/001409.html
2018-07-10 15:23:20 +02:00
Robert Schütz
ef2ac673a1 home-assistant: 0.73.0 -> 0.73.1 2018-07-09 16:16:43 +02:00
Peter Hoeg
f759a0d0a6
Merge pull request #43153 from dotlambda/home-assistant-0.73.0
home-assistant: 0.72.1 -> 0.73.0
2018-07-09 21:46:42 +08:00
Silvan Mosberger
5bdd9bddb5
xorg.xkeyboardconfig: 2.23.1 -> 2.24 2018-07-09 04:51:18 +02:00
R. RyanTM
53ef7f0c81 jackett: 0.8.1138 -> 0.8.1209 (#42999)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/jackett/versions.

These checks were done:

- built on NixOS
- /nix/store/hlpqjm3nia27yrsvss57828qla6a1x5m-jackett-0.8.1209/bin/Jackett passed the binary check.
- 1 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 0.8.1209 with grep in /nix/store/hlpqjm3nia27yrsvss57828qla6a1x5m-jackett-0.8.1209
- directory tree listing: https://gist.github.com/73cb9952f51705ba06c4c820c3466ffa
- du listing: https://gist.github.com/c6920225e6de6c9be6afa6799f4b17d6
2018-07-09 00:03:51 +02:00
Robert Schütz
33ce6a4017
Merge pull request #43201 from dotlambda/vobject-0.9.6
python.pkgs.vobject: 0.9.5 -> 0.9.6
2018-07-08 13:47:12 +02:00
Robert Schütz
01d6aca3ae radicale: pin vobject==0.9.5 2018-07-08 10:54:59 +02:00
Vladimír Čunát
1c5addde5f
knot_resolver: support prefill module in extraFeatures 2018-07-08 09:21:42 +02:00
Silvan Mosberger
b5f6a0c7de
Merge pull request #42953 from r-ryantm/auto-update/sonarr
sonarr: 2.0.0.5163 -> 2.0.0.5228
2018-07-08 01:25:16 +02:00
Robert Schütz
e8697ddea4 home-assistant: 0.72.1 -> 0.73.0 2018-07-08 00:01:32 +02:00
Silvan Mosberger
d925fe3f81
Merge pull request #42980 from r-ryantm/auto-update/nagios
nagios: 4.4.0 -> 4.4.1
2018-07-07 18:52:23 +02:00
Jaka Hudoklin
ce32952d15 zookeeper: patch shebangs in output scripts 2018-07-07 11:34:06 +02:00
Jaka Hudoklin
6e9c7f0ad5 zookeeper: wrap zkServer.sh command 2018-07-07 11:34:04 +02:00