Commit graph

6078 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
Franz Pletz e7ca9af4cc
shairport-sync: fix pulseaudio support & default arguments 2018-09-26 18:12:02 +02:00
Victor SENE e387f2506b roundcube: simplify using fetchzip 2018-09-26 15:34:46 +02: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
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
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
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
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
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
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
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
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
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