Commit graph

222362 commits

Author SHA1 Message Date
Frederik Rietdijk cf1a68360e python2: 2.7.17 -> 2.7.18 2020-04-21 11:21:39 +02:00
R. RyanTM aaddfc0c5b libunwind: 1.3.1 -> 1.4.0 2020-04-21 08:41:13 +02:00
R. RyanTM 6a64dbefd0 libnetfilter_conntrack: 1.0.7 -> 1.0.8 2020-04-21 08:40:58 +02:00
Lancelot SIX 6c162416ca bison: 3.5.2 -> 3.5.4 2020-04-21 08:40:37 +02:00
R. RyanTM 0293a4b37f waf: 2.0.19 -> 2.0.20 2020-04-21 08:40:14 +02:00
R. RyanTM 1c7bcaa6db vim: 8.2.0343 -> 8.2.0510 2020-04-21 08:39:52 +02:00
R. RyanTM 640186a866 libvdpau: 1.3 -> 1.4 2020-04-21 08:38:50 +02:00
R. RyanTM 4613022b5d libyaml: 0.2.2 -> 0.2.3 2020-04-21 08:37:46 +02:00
Jörg Thalheim c88f04cb93 gpgme: convert macos sed patch scripts to patch files
This is less brittle and breaks loud if the code changes.
Also remove the /usr/bin/file patch. It is not really required
for the build to work, the generated warning is harmless.
2020-04-21 08:37:12 +02:00
Kirill Elagin 5470d96645 pgpgme: Fix build with python on macOS
* Replace LD_LIBRARY_PATH with OS-specific name (e.g. DYLD_LIBRARY_PATH
  on macOS).
* Disable Python tests on macOS, because they use gpg, which fails due
  to a very long socket path (https://github.com/NixOS/nix/pull/1085).

The former should be fixed upstream. The latter is a Nix-specific issue,
but it can be worked-around upstream by making Python tests respect
--disable-gpg-test.
2020-04-21 08:37:12 +02:00
Linus Heckemann 6673a4988e
gnupg: use libusb1 (#85374)
* gnupg: use libusb1

This fixes scdaemon's direct ccid support.

* systemd: fix gnupg-minimal
2020-04-21 08:35:40 +02:00
R. RyanTM c9576a4b74 doxygen: 1.8.17 -> 1.8.18 2020-04-21 08:33:04 +02:00
Jan Tojnar 9073a0cb8b meson: 0.53.2 → 0.54.0
https://mesonbuild.com/Release-notes-for-0-54-0.html
2020-04-21 08:32:39 +02:00
Pavol Rusnak 3c83abd60f libfido2: 1.3.1 -> 1.4.0
- drop upstreamed patches
- use system hidapi
2020-04-21 08:31:37 +02:00
Frederik Rietdijk 803b3d296c Merge staging-next into staging 2020-04-21 08:29:51 +02:00
Frederik Rietdijk b71232fc53 Merge master into staging-next 2020-04-21 08:28:19 +02:00
Scott Worley d2d7fbc431 gzip: Don't depend on gzip being in $PATH 2020-04-21 08:24:27 +02:00
R. RyanTM 9fe2f2565e gitAndTools.gitFull: 2.25.1 -> 2.25.2 2020-04-21 08:14:29 +02:00
oxalica 7760cff5d7 util-linux: 2.33.2 -> 2.35.1 2020-04-21 08:12:29 +02:00
Dmitry Kalinkin 529165cfac doc/texlive: remove known problems section
Couple items are outdated. Also they don't belong to documentation -
should go to the issue tracker instead.
2020-04-21 08:09:39 +02:00
Frederik Rietdijk ef1679a038
Merge pull request #85171 from bcdarwin/python3-mayavi
python3Packages.mayavi: update from Python 2 to Python 3 (and switch from wxPython to pyqt5)
2020-04-21 08:01:57 +02:00
Dmitry Kalinkin c7d4882ab1
python3Packages.matplotlib: 3.1.3 -> 3.2.1, and various cleanups (#84362)
* pythonPackages.matplotlib: add veprbl to maintainers

* pythonPackages.matplotlib: remove an old darwin hack

* pythonPackages.matplotlib: remove python and stdenv from buildInputs

* python3Packages.matplotlib: remove a hack for python33

* pythonPackages.matplotlib: remove outdated checkPhase

Downloading the baseline_images is not a real issue, building against
older freetype (local_freetype = True) is, perhaps, not what we
want. The good news is that the tests would pass (tested on 3.2.1) if
we were to enable them:

========== 6684 passed, 1332 skipped, 10 xfailed in 228.64s (0:03:48) ==========

* pythonPackages.matplotlib: provide setup.cfg from a file instead of a patch

* python3Packages.matplotlib: 3.1.3 -> 3.2.1
2020-04-21 07:56:13 +02:00
Ben Darwin fe07e2b2ac elastix: enable tests 2020-04-21 07:54:59 +02:00
Ben Darwin 30cafee8b6 elastix: python -> python3 2020-04-21 07:54:59 +02:00
Greg Price 45a04ed6d4 gbsplay: fix configure flags
This caused none of these flags to have any effect.  That's because
the configure command looked like this:

    ./configure --prefix=/nix/store/svhl0fjdj1jl2sqcppy5vnzpfi4gj3d3-gbsplay-2016-12-17 \
        --without-test\ --without-contrib\ --disable-devdsp\ --enable-pulse\ --disable-alsa\ --disable-midi\ --disable-nas\ --disable-dsound\ --disable-i18n

with one giant flag '--without-test --without-contrib...', containing
internal spaces.

This can be seen in `nix log nixpkgs.gbsplay`, in this line:

    configure flags: --prefix=/nix/store/svhl0fjdj1jl2sqcppy5vnzpfi4gj3d3-gbsplay-2016-12-17 --without-test\ --without-contrib\ --disable-devdsp\ --enable-pulse\ --disable-alsa\ --disable-midi\ --disable-nas\ --disable-dsound\ --disable-i18n

and then in the fact that features like "devdsp" and "midi" are listed
as enabled in later output, and source files like plugout_midi.c are
included in the build.

I don't have a real opinion on whether it's better to have these flags
or not, but it's clear the author's intention was to pass them.  So,
fix the attr name so they get passed.
2020-04-21 07:51:55 +02:00
Raphael Borun Das Gupta 5dc6f02d77 lektor: fix "ImportError: No module named pkg_resources" 2020-04-21 07:42:35 +02:00
Frederik Rietdijk 7856c8ba5d yaru-theme: mark as broken 2020-04-21 07:37:22 +02:00
Frederik Rietdijk ae9529c27d arc-theme: mark as broken 2020-04-21 07:37:15 +02:00
Mario Rodas 2ddb7a2056
Merge pull request #85605 from oxalica/bump/birdtray
birdtray: 1.7.0 -> 1.8.0
2020-04-20 21:27:07 -05:00
Mario Rodas 49d6a72a43
Merge pull request #85621 from misuzu/kmon-update
kmon: 1.0.1 -> 1.1.0
2020-04-20 21:25:24 -05:00
Mario Rodas 77317be3c2
Merge pull request #85641 from zowoq/cni
cni: 0.7.0 -> 0.7.1, cni-plugins: 0.8.4 -> 0.8.5
2020-04-20 21:17:23 -05:00
zowoq 202b87ca99 cni-plugins: 0.8.4 -> 0.8.5
https://github.com/containernetworking/plugins/releases/tag/v0.8.5
2020-04-21 09:29:29 +10:00
zowoq 7448089fd6 cni: 0.7.0 -> 0.7.1
https://github.com/containernetworking/cni/releases/tag/v0.7.1
2020-04-21 09:28:17 +10:00
Michael Weiss d8b7b590c7
html-proofer: 3.15.2 -> 3.15.3 2020-04-21 01:12:59 +02:00
Timo Kaufmann 166bf2314a
Merge pull request #81210 from B4dM4n/ausweisapp2
ausweisapp2: init at 1.20.0
2020-04-20 22:07:40 +00:00
Daniel Fullmer 4b0b23db77 wifite2: 2.5.2 -> 2.5.3 2020-04-20 23:10:15 +02:00
markuskowa 3bbd074217
Merge pull request #79953 from r-ryantm/auto-update/mdds
mdds: 1.5.0 -> 1.6.0
2020-04-20 20:27:22 +02:00
John Wiegley fd494fc013
Merge pull request #84785 from mikesperber/unbreak-emacs-macos 2020-04-20 10:57:17 -07:00
Marek Mahut 60100a7c92
Merge pull request #83769 from dadada/nixos/dokuwiki-multi-server
nixos/dokuwiki: add support for multi-site, additional plugins and templates
2020-04-20 19:39:48 +02:00
Jörg Thalheim f349aca12a
Merge pull request #85626 from filalex77/procs-0.10.0
procs: 0.9.20 -> 0.10.0
2020-04-20 18:20:58 +01:00
markuskowa e18bb6fa83
Merge pull request #84340 from r-ryantm/auto-update/byacc
byacc: 20191125 -> 20200330
2020-04-20 19:03:13 +02:00
markuskowa 52df4fa7d0
Merge pull request #83752 from r-ryantm/auto-update/netcdf
netcdf: 4.7.3 -> 4.7.4
2020-04-20 18:59:17 +02:00
Jörg Thalheim 59242df8d6
Merge pull request #85580 from siriobalmelli-foss/fix/mscgen
mscgen: fix build
2020-04-20 17:51:02 +01:00
Oleksii Filonenko 7133c01a7a
procs: 0.9.20 -> 0.10.0 2020-04-20 19:15:05 +03:00
worldofpeace e9e9582986
Merge pull request #85186 from worldofpeace/20.03-readme
README.md: 20.03 release
2020-04-20 11:57:45 -04:00
worldofpeace 6380be302a rl-2003: release date 2020-04-20 11:52:57 -04:00
Eelco Dolstra f76d7b5e41
Merge pull request #85620 from matthewbauer/use-modulesPath-for-nixos-generate-config
nixos/nixos-generate-config.pl: use modulesPath instead of <nixpkgs>
2020-04-20 17:25:17 +02:00
misuzu dc28779cee kmon: 1.0.1 -> 1.1.0 2020-04-20 18:12:02 +03:00
Orivej Desh f9fbc9b118
hydrogen-unstable: init at 1.0.0-beta2 (#85454) 2020-04-20 15:09:15 +00:00
Matthew Bauer c45295d47e nixos/nixos-generate-config.pl: use modulesPath instead of <nixpkgs>
For imports, it is better to use ‘modulesPath’ than rely on <nixpkgs>
being correctly set. Some users may not have <nixpkgs> set correctly.
In addition, when ‘pure-eval=true’, <nixpkgs> is unset.
2020-04-20 09:57:17 -05:00