Commit Graph

178899 Commits

Author SHA1 Message Date
worldofpeace
470254a6da
Merge pull request #72959 from worldofpeace/gnome-flashback-systemd
nixos/gnome3: add gnome-flashback to systemd.packages
2019-11-12 01:53:09 +00:00
John Ericson
16f0fe7fe3 Merge remote-tracking branch 'upstream/master' into mingw-mcfthreads 2019-11-11 20:48:14 -05:00
markuskowa
5979caeab0
Merge pull request #72687 from r-ryantm/auto-update/vim
vim: 8.1.2188 -> 8.1.2237
2019-11-12 01:05:22 +01:00
Kyle Sferrazza
58d9d8ea32
numix-solarized-gtk-theme: 20170810 -> 20180913 2019-11-11 19:02:44 -05:00
Michael Raskin
e3b76760e3
Merge pull request #73168 from judaew/btrfs-progs-update
btrfs-progs: 5.2.2 -> 5.3.1
2019-11-11 23:10:49 +00:00
Michael Raskin
64f146ba76
Merge pull request #73204 from tekeri/add-perl-cachekyototycoon
perlPackages.CacheKyotoTycoon: init at 0.16
2019-11-11 23:09:21 +00:00
Michael Raskin
d7d290a90c
Merge pull request #73207 from tekeri/add-perl-cdbfile
perlPackages.CDB_File: init at 0.99
2019-11-11 23:07:50 +00:00
Michael Raskin
e944d4200f
Merge pull request #73200 from tekeri/add-perl-logdispatchfilerotate
perlPackages.LogDispatchFileRotate: init at 1.36
2019-11-11 23:06:49 +00:00
markuskowa
dca1178698
Merge pull request #72472 from r-ryantm/auto-update/dblatex
dblatex: 0.3.10 -> 0.3.11
2019-11-11 23:58:14 +01:00
markuskowa
5fa8b82d3e
Merge pull request #72500 from r-ryantm/auto-update/drumkv1
drumkv1: 0.9.10 -> 0.9.11
2019-11-11 23:57:28 +01:00
Jan Tojnar
374430eff2
guake: clean up
* format with nixpkgs-fmt
* remove glibcLocales hack since we now have C.UTF-8
2019-11-11 23:51:34 +01:00
symphorien
40f1983f95 caffeine-ng: fix paths in desktop files
(#73123)
2019-11-11 23:37:58 +01:00
Renaud
f6a91dd7e5
Merge pull request #73213 from veprbl/pr/arrow-cpp_fix_tests_run
arrow-cpp: fix tests not being run on linux
2019-11-11 23:35:26 +01:00
Jan Tojnar
54b2edfb7f
Merge pull request #73250 from wamserma/guake-add-setuptools
guake: add missing dependency on setuptools
2019-11-11 23:34:13 +01:00
Markus Kowalewski
5e6043b764
drumkv1: use Qt5's mkDerivation 2019-11-11 23:29:15 +01:00
Jason Felice
52774319e0 fop: builds on all platforms 2019-11-11 23:20:35 +01:00
Jonathan Ringer
a0476bbccc python3Packages.websockets: 8.0.2 -> 8.1 2019-11-11 14:16:11 -08:00
markuskowa
04c5e20496
Merge pull request #72534 from r-ryantm/auto-update/include-what-you-use
include-what-you-use: 0.12 -> 0.13
2019-11-11 22:53:49 +01:00
markuskowa
289c4b4239
Merge pull request #72456 from r-ryantm/auto-update/btrbk
btrbk: 0.28.3 -> 0.29.0
2019-11-11 22:45:35 +01:00
Jan Tojnar
1569632bf8
Merge branch 'staging-next' into staging 2019-11-11 22:28:32 +01:00
Jan Tojnar
1b5a8a2cc6
Merge branch 'master' into staging-next 2019-11-11 22:27:57 +01:00
Jan Tojnar
9fe897c1ec
calls: 2019-10-09 → 2019-10-29 2019-11-11 22:24:19 +01:00
Aaron Andersen
9dbbfb78c5
Merge pull request #73108 from baldo/steam
steam: Add libva to chrootenv
2019-11-11 16:23:47 -05:00
Jonathan Ringer
920faee436 pythonPackages.wurlitzer: add missing python2 dependencies 2019-11-11 13:20:23 -08:00
Markus S. Wamser
b0879a0372 guake: add missing dependency on setuptools
python setuptools is a runtime dependency (as
from pkg_resources import Requirement
is used)
2019-11-11 22:16:42 +01:00
Jonathan Ringer
e9453fc878 python3Packages.datasette: 0.29.3 -> 0.30.2 2019-11-11 13:14:46 -08:00
Jonathan Ringer
0dfbff1d46 python3Packages.google_cloud_vision: fix tests 2019-11-11 13:13:17 -08:00
Florian Klink
05590b3efd ceph: fix build and cleanup expression
correct platforms. ceph currently doesn't build on aarch64-linux. So
let's not lie in meta.platforms.

ceph: fix multiple output
We currently just move $out/share/ceph/mgr to
$lib/lib/ceph, and then remove all references to $out with a find
command.

I checked $out, the only reference to $out is in
$lib/lib/ceph/libceph-common.so.0, coming from src/common/options.cc:
https://github.com/ceph/ceph/blob/master/src/common/options.cc#L5050:

>  Option("mgr_module_path", Option::TYPE_STR, Option::LEVEL_ADVANCED)
>  .set_default(CEPH_DATADIR "/mgr")
>  .add_service("mgr")
>  .set_description("Filesystem path to manager modules."),

Just removing the reference might break some behaviour - it should point
to $lib/ceph/mgr instead.

We can fix this in a much more elegant fashion by just passing a custom
CMAKE_INSTALL_DATADIR to the build system.

ceph: fix outdated Boost::python substitutions

Instead of substituting in CMakeLists.txt files, one now needs to set
MGR_PYTHON_VERSION.

ceph: clean up PYTHONPATH wrapping

Set `pythonPath` instead of exporting PYTHONPATH.

Use `toPythonPath` to construct the PYTHONPATH where we need manual
wrapping. There's no ceph-volume, only ceph-mgr.

ceph: set doCheck = false explicitly

and describe why.

ceph: patch more shebangs

ceph: use system-provided gtest and rocksdb
2019-11-11 21:47:02 +01:00
Florian Klink
781d85c69a rocksdb: enable USE_RTTI=1
This is required for programs using rocksdb and and typeinfo.

Otherwise, linking them fails with errors like this (that's ceph):

/nix/store/cg0k49h66nkdqx6ccwnqr0i4q0fnfznc-binutils-2.31.1/bin/ld: ../../lib/libos.a(RocksDBStore.cc.o):(.data.rel.ro._ZTIN12RocksDBStore14RocksWBHandlerE[_ZTIN12RocksDBStore14RocksWBHandlerE]+0x10): undefined reference to `typeinfo for rocksdb::WriteBatch::Handler'
/nix/store/cg0k49h66nkdqx6ccwnqr0i4q0fnfznc-binutils-2.31.1/bin/ld: ../../lib/libos.a(RocksDBStore.cc.o):(.data.rel.ro._ZTIN12RocksDBStore19MergeOperatorRouterE[_ZTIN12RocksDBStore19MergeOperatorRouterE]+0x10): undefined reference to `typeinfo for rocksdb::AssociativeMergeOperator'
/nix/store/cg0k49h66nkdqx6ccwnqr0i4q0fnfznc-binutils-2.31.1/bin/ld: ../../lib/libos.a(RocksDBStore.cc.o):(.data.rel.ro._ZTIN12RocksDBStore19MergeOperatorLinkerE[_ZTIN12RocksDBStore19MergeOperatorLinkerE]+0x10): undefined reference to `typeinfo for rocksdb::AssociativeMergeOperator'
/nix/store/cg0k49h66nkdqx6ccwnqr0i4q0fnfznc-binutils-2.31.1/bin/ld: ../../lib/libos.a(RocksDBStore.cc.o):(.data.rel.ro._ZTI17CephRocksdbLogger[_ZTI17CephRocksdbLogger]+0x10): undefined reference to `typeinfo for rocksdb::Logger'
/nix/store/cg0k49h66nkdqx6ccwnqr0i4q0fnfznc-binutils-2.31.1/bin/ld: ../../lib/libos.a(BlueRocksEnv.cc.o):(.data.rel.ro._ZTI12BlueRocksEnv[_ZTI12BlueRocksEnv]+0x10): undefined reference to `typeinfo for rocksdb::EnvWrapper'
/nix/store/cg0k49h66nkdqx6ccwnqr0i4q0fnfznc-binutils-2.31.1/bin/ld: ../../lib/libos.a(BlueRocksEnv.cc.o):(.data.rel.ro._ZTI23BlueRocksSequentialFile[_ZTI23BlueRocksSequentialFile]+0x10): undefined reference to `typeinfo for rocksdb::SequentialFile'
/nix/store/cg0k49h66nkdqx6ccwnqr0i4q0fnfznc-binutils-2.31.1/bin/ld: ../../lib/libos.a(BlueRocksEnv.cc.o):(.data.rel.ro._ZTI25BlueRocksRandomAccessFile[_ZTI25BlueRocksRandomAccessFile]+0x10): undefined reference to `typeinfo for rocksdb::RandomAccessFile'
/nix/store/cg0k49h66nkdqx6ccwnqr0i4q0fnfznc-binutils-2.31.1/bin/ld: ../../lib/libos.a(BlueRocksEnv.cc.o):(.data.rel.ro._ZTI21BlueRocksWritableFile[_ZTI21BlueRocksWritableFile]+0x10): undefined reference to `typeinfo for rocksdb::WritableFile'
/nix/store/cg0k49h66nkdqx6ccwnqr0i4q0fnfznc-binutils-2.31.1/bin/ld: ../../lib/libos.a(BlueRocksEnv.cc.o):(.data.rel.ro._ZTI17BlueRocksFileLock[_ZTI17BlueRocksFileLock]+0x10): undefined reference to `typeinfo for rocksdb::FileLock'
2019-11-11 21:47:01 +01:00
isgy
da006ed937 python3Packages.jupyterlab_server: added pyjson5 dependency 2019-11-11 12:45:02 -08:00
isgy
3be103989c python3Packages.pyjson5: init at 0.8.5 2019-11-11 12:45:02 -08:00
Jan Tojnar
b35e68d77d
calls: fix build 2019-11-11 21:44:31 +01:00
markuskowa
79302a8d36
Merge pull request #73240 from filalex77/licensor-2.0.0
licensor: init at 2.0.0
2019-11-11 21:42:53 +01:00
Sondre Nilsen
150f62b923 pythonPackage.jsonlines: init at 1.2.0 2019-11-11 12:35:48 -08:00
worldofpeace
d73e94578f
Merge pull request #73216 from filalex77/antibody-4.2.0
antibody: 4.1.2 -> 4.2.0
2019-11-11 20:19:53 +00:00
Jaka Hudoklin
4432135955
Merge pull request #73150 from ashkitten/add-elasticsearch-ingest-attachment
elasticsearchPlugins: add ingest-attachment
2019-11-11 21:01:06 +01:00
John Ericson
63eac67319 nghttp2: Fix MinGW build by skipping some optional deps
I think those deps could be made to build, but I didn't want to get
bogged down investigating further. "Use flags" are always a good thing,
so this is fine for now.
2019-11-11 14:10:02 -05:00
John Ericson
dec8d2c5da openssl: Switch deafult for MinGW
Working around broken build for now.
2019-11-11 14:10:02 -05:00
John Ericson
e00237e790 boehm-gc: Fix build on MinGW with mcfgthreads
CC @lhmouse
2019-11-11 14:10:01 -05:00
markuskowa
23ed6ff635
Merge pull request #72973 from pasqui23/hm
home-manager:2019-10-23 -> 2019-10-29
2019-11-11 20:07:33 +01:00
Oleksii Filonenko
3fe11d1180
licensor: init at 2.0.0 2019-11-11 21:04:14 +02:00
markuskowa
1c2c3c9ea2
Merge pull request #73096 from danieldk/drawio-12.2.2
drawio: 12.1.7 -> 12.2.2
2019-11-11 20:03:11 +01:00
WilliButz
ef1d31e53c
prometheus-blackbox-exporter: 0.15.1 -> 0.16.0, disable tests 2019-11-11 19:49:38 +01:00
Alex Guzman
82dfacc7fe trousers: 0.3.13 -> 0.3.14
* Update trousers to latest, use regular openssl (#68338)

trousers: cleanup

* some CFLAGS and LDFLAGS are not needed anymore

* libtool file fixup was a no-op

* license is now BSD-3 since:
0160d229f8/
2019-11-11 19:43:14 +01:00
c0bw3b
1289606e02
mpg321: fix CVE-2018-7263
Close #57154
Close #70105
2019-11-11 19:35:54 +01:00
c0bw3b
92edb06109
libmad: fix three CVE from 2017
* add patch for CVE-2017-8372 and CVE-2017-8373
* add patch for CVE-2017-8374
* add patch for x86_64 platforms
* fetch existing patches from remote sources
2019-11-11 19:35:53 +01:00
Renaud
c64e9dadfe
Merge pull request #72742 from Avaq/avaq/twa-190
twa: 1.8.0 -> 1.9.1
2019-11-11 18:31:43 +01:00
John Ericson
89ec69e25e pcre: Skip winpthread dep
Seems to build just fine without it, maybe it was just using C++ threads
which mcfgthread provides?
2019-11-11 11:02:39 -05:00
John Ericson
04cb05d20c gcc: Build MinGW stage two with threading library
Currently this is set up to be mcfgthreads, but it could be something
else instead.
2019-11-11 11:02:38 -05:00
Aldwin Vlasblom
776d4c13ac
twa: 1.8.0 -> 1.9.1
This commit updates twa from version 1.8.0 to version 1.9.1,
specifying its new 'jq' dependency.

It also moves 'makeWrapper' from the build inputs to the native
build inputs, as it's not necessary during runtime.
2019-11-11 16:25:34 +01:00
Renaud
ceb648f66a
fierce: 1.3.0 -> 1.4.0
(#73129)
2019-11-11 14:14:24 +01:00
Niklas Hambüchen
d80a11295d
Merge pull request #73210 from B4dM4n/hotspot-wrapqt
hotspot: use Qt mkDerivation
2019-11-11 14:10:11 +01:00
tekeri
cd41194654 circus: fix incompatible dependency of python-circus (#73199)
* circus: fix incompatible dependency of python-circus

* circus: move out of python packages set

* circus: remove directly used python packages arguments
2019-11-11 14:09:58 +01:00
tekeri
a4b4681905 perlPackages.LogDispatchFileRotate: init at 1.36 2019-11-11 20:55:05 +09:00
tekeri
c432914491 perlPackages.FindLib: init at 1.04 2019-11-11 20:51:57 +09:00
Oleksii Filonenko
dfb9a1e164
antibody: add filalex77 as a maintainer 2019-11-11 13:51:02 +02:00
tekeri
eb523b823c perlPackages.Furl: init at 3.13 2019-11-11 20:50:42 +09:00
Oleksii Filonenko
3f72f7bac2
antibody: 4.1.2 -> 4.2.0 2019-11-11 13:50:42 +02:00
tekeri
6fe78ec26a perlPackages.CacheKyotoTycoon: init at 0.16 2019-11-11 20:50:29 +09:00
tekeri
00164f2fd3 perlPackages.CDB_File: init at 0.99 2019-11-11 20:44:58 +09:00
Dmitry Kalinkin
c57018fb3b
arrow-cpp: fix tests not being run on linux
Fixes: 8c86e54a ('arrow-cpp: fix/disable some plasma tests on darwin')
2019-11-11 06:18:42 -05:00
Mario Rodas
542fb7715b
Merge pull request #73182 from avdv/wtf-0.24.0
wtf: 0.23.0 -> 0.24.0
2019-11-11 06:10:37 -05:00
Frederik Rietdijk
73b88e17dd Merge staging-next into staging 2019-11-11 12:09:26 +01:00
Dennis Gosnell
2df923eaab
Merge pull request #73170 from MarcFontaine/mafo/ghcjs
fix ghc-paths-nix-ghcjs.patch
2019-11-11 20:08:53 +09:00
Frederik Rietdijk
cf27abf534 Merge master into staging-next 2019-11-11 12:06:42 +01:00
Frederik Rietdijk
6e9743f120 pythonPackages.spyder: fix package 2019-11-11 11:55:52 +01:00
Frederik Rietdijk
a94b6a90ac Revert "python: spyder-kernels: 0.5.2 -> 1.6.0"
We should still stick with an older version for spyder 3.3.6. As soon
as 4.0.0 is released we need to upgrade this package.

This reverts commit 757fd1e27b.
2019-11-11 11:55:52 +01:00
Renaud
2ea154b801
Merge pull request #72412 from Tomahna/mopidy-iris
mopidy-iris: 3.41.1 -> 3.42.1
2019-11-11 11:55:03 +01:00
Oleksii Filonenko
7b5194aee9 fselect: init at 0.6.7 (#73206)
* fselect: init at 0.6.7

* Fix cargoSha256

Co-authored-by: zimbatm <zimbatm@users.noreply.github.com>
2019-11-11 10:25:16 +00:00
Sebastian Jordan
8b323287f2 pypi2nix: 2.0.0 -> 2.0.1 2019-11-11 10:52:23 +01:00
Fabian Möller
832ce6942c
hotspot: use Qt mkDerivation 2019-11-11 10:46:30 +01:00
Kevin Rauscher
6b4ab287a4 mopidy-iris: 3.41.1 -> 3.42.2 2019-11-11 10:19:57 +01:00
Dmitry Kalinkin
03e78496b6
arrow-cpp: fix on i686-linux 2019-11-11 03:23:09 -05:00
Jan Tojnar
e994fdcac0
Merge pull request #72922 from davidak/fix_versions
Fix package metadata like version and homepage
2019-11-11 09:05:08 +01:00
Mario Rodas
ad4a1e0f85 wtf: Use Go 1.13 and drop overrideModAttrs
This no longer uses gocenter.io as a proxy, but the official Go module proxy
instead.
2019-11-11 08:51:55 +01:00
Sander van der Burg
173bf3473c titaniumenv: remove 7.1, add 8.2 and make it the default 2019-11-11 08:50:27 +01:00
Peter Simons
1a2415e9a9
Merge pull request #72389 from nkpart/nkpart/fix-rPackages-glmnet
rPackages.glmnet: Add missing dependency
2019-11-11 07:57:46 +01:00
John Ericson
999ef20129 mingw-w64 libc: Multiple outputs and parallel builds
Also deduplicate more of the GCC derivations.
2019-11-11 00:25:24 -05:00
John Ericson
06c5e811e6 mcfgthreads: Init from git 2019-11-11 00:25:24 -05:00
John Ericson
0a63190c31 windows top-level: Clean up with makeScope 2019-11-11 00:25:24 -05:00
John Ericson
38ebb8ff82 fetchurl: Eliminate pointless cross differences 2019-11-11 00:25:24 -05:00
worldofpeace
251a560449 pantheon.wingpanel-indicator-keyboard: 2.1.2 -> 2.2.0
https://github.com/elementary/wingpanel-indicator-keyboard/releases/tag/2.2.0
2019-11-10 20:59:56 -05:00
worldofpeace
58f9fcdf4b pantheon.switchboard: 2.3.6 -> 2.3.7
Drops libunity https://github.com/elementary/switchboard/pull/109.

https://github.com/elementary/switchboard/releases/tag/2.3.7
2019-11-10 20:59:56 -05:00
Florian Klink
848399f448
Merge pull request #72390 from flokli/bump-opensmtpd
opensmtpd: 6.4.2p1 -> 6.6.1p1
2019-11-11 01:56:24 +01:00
Sander van der Burg
9b51c5145a xcodeenv: bump default Xcode version to 11.1, default iOS SDK to 13.1. Add troubleshooting section to docs 2019-11-11 00:18:22 +01:00
worldofpeace
027e2a2556
Merge pull request #73159 from maralorn/fix-qrcode
pythonPackages.qrcode: Fix "No module named pkg_resources" error
2019-11-10 23:01:23 +00:00
John Ericson
1782f6c826
Merge pull request #73184 from Ericson2314/gcc-fix-cross-whoops
gcc: Fix cross after I accidentally changed build target
2019-11-10 17:49:48 -05:00
John Ericson
3f74a4d066 gcc: Fix cross after I accidentally changed build target
I deleted "bootstrap", but forgot to make the condition
build = host = target.
2019-11-10 17:06:22 -05:00
Linus Heckemann
da9b3ea747
Merge pull request #65362 from craigem/calls
calls: init at 0.0.1
2019-11-10 22:59:00 +01:00
Carles Pagès
539e94030c
Merge pull request #72736 from nh2/nix-sdl2-static-fixes
SDL2: Keep .a files on `dontDisableStatic`; don't move them to $dev; prune .la
2019-11-10 22:18:38 +01:00
Claudio Bley
859a933a5a wtf: 0.23.0 -> 0.24.0 2019-11-10 22:14:41 +01:00
John Ericson
62e154ff8d Merge remote-tracking branch 'upstream/master' into gcc-dedup-configure-flags 2019-11-10 16:12:25 -05:00
John Ericson
5c5ca018c8 gcc: Deduplicate configureFlags
Thanks again to @bgamari who in 1c1207220f
did the cleanup to make this possible. It's been a long time coming!
2019-11-10 15:58:35 -05:00
Emery Hemingway
84c44d8caf
Merge pull request #73162 from rnhmjoj/monero
monero: 0.14.1.2 -> 0.15.0.0
2019-11-10 21:55:26 +01:00
John Ericson
f666c61d20 gcc: Deduplicate preConfigure 2019-11-10 15:15:04 -05:00
John Ericson
f5ddd103e7
Merge pull request #73173 from Ericson2314/gcc-cross-cleanup
gcc: Clean up cross configure flags and name prefix
2019-11-10 15:05:18 -05:00
Tim Steinbach
39cd7f923e nodePackages: Updates 2019-11-10 14:31:00 -05:00
Tim Steinbach
c083cdd6dc nodePackages: Add gitmoji-cli 2019-11-10 14:30:59 -05:00
John Ericson
ca341c2d5b gcc: Clean up cross configure flags and name prefix 2019-11-10 14:29:11 -05:00
Aaron Andersen
706fbecc3d
Merge pull request #72682 from r-ryantm/auto-update/tome4
tome4: 1.5.10 -> 1.6.0
2019-11-10 13:48:34 -05:00