Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python 3.7 pycurl build failing in latest unstable #77304

Closed
mdedetrich opened this issue Jan 8, 2020 · 8 comments · Fixed by #89544, #90481, pbogdan/nix-hie#46 or dfinity/motoko#1635
Closed

Comments

@mdedetrich
Copy link

Describe the bug
Python 3.7 pycurl is failing to build in the latest nix unstable

To Reproduce
Steps to reproduce the behavior:

  1. Build python3.7-pycurl-7.43.0.3.drv
  2. Build fails with an assertion failure in the test, i.e.
E       AssertionError: assert -1 >= 0

tests/multi_timer_test.py:79: AssertionError

Expected behavior
The build works without issues

Build Log
https://gist.github.com/mdedetrich/9029f67393b104ba7fed465e4796ac4a

Metadata

 - system: `"x86_64-linux"`
 - host os: `Linux 5.4.6, NixOS, 20.03pre206632.b0bbacb5213 (Markhor)`
 - multi-user?: `yes`
 - sandbox: `yes`
 - version: `nix-env (Nix) 2.3.1`
 - channels(root): `"nixos-20.03pre208261.9beb0d1ac2e, nixpkgs-unstable-20.03pre207249.7e8454fb856"`
 - channels(mdedetrich): `"nixpkgs-20.03pre207249.7e8454fb856"`
 - nixpkgs: `/home/mdedetrich/.nix-defexpr/channels/nixpkgs`

Maintainer information:

attribute: python3.7-pycurl
@Br1ght0ne
Copy link
Member

Br1ght0ne commented Jan 8, 2020

I tried building the same derivation three times, having 2 failures and 1 successful build. The failures are different from the one in the given build log.

Command: nix-build --check -A python37Packages.pycurl --show-trace on latest master
Success logs: https://gist.github.com/307c2014934bcc0f7a18bbb659737e3d
Failure logs: https://gist.github.com/757aa7adc164de126c87ade80894b899

I think that pycurl tests are a bit... "flaky", so to say. (read "non-deterministic")

@mdedetrich
Copy link
Author

mdedetrich commented Jan 8, 2020

I tried running it 3 times and didn't get it to work, let me try a few more times. Might it be the case that on some machines its failing reliably?

@mdedetrich
Copy link
Author

mdedetrich commented Jan 8, 2020

This is the latest run with even more tests failing https://gist.github.com/mdedetrich/715eb116c172fda32497affe1eff5c68. Something seems to be quite wrong the tests, i.e. they seem to be seriously flaky.

@mdedetrich
Copy link
Author

Update on this, I did manage to get it to eventually pass the tests but it took 20 times. Maybe we should report these flaky tests to upstream?

@infinisil
Copy link
Member

I opened #78043 to disable the tests, which will fix this

@nh2
Copy link
Contributor

nh2 commented Jun 5, 2020

@infinisil @jonringer This issue still exists despite your fix 95e3e3e. I got it today on 20.03.

The reason is probably that memory_mgmt_test.py is not the only one that can trigger it, there is also a multi_memory_mgmt_test.py:

Full build errors:

tests/xferinfo_cb_test.py ...                                            [100%]

=================================== FAILURES ===================================
_______________________ MultiSocketTest.test_multi_timer _______________________

self = <tests.multi_timer_test.MultiSocketTest testMethod=test_multi_timer>

    def test_multi_timer(self):
        urls = [
            'http://%s:8380/success' % localhost,
            'http://%s:8381/success' % localhost,
            'http://%s:8382/success' % localhost,
        ]
    
        timers = []
    
        # timer callback
        def timer(msecs):
            #print('Timer callback msecs:', msecs)
            timers.append(msecs)
    
        # init
        m = pycurl.CurlMulti()
        m.setopt(pycurl.M_TIMERFUNCTION, timer)
        m.handles = []
        for url in urls:
            c = util.DefaultCurl()
            # save info in standard Python attributes
            c.url = url
            c.body = util.BytesIO()
            c.http_code = -1
            m.handles.append(c)
            # pycurl API calls
            c.setopt(c.URL, c.url)
            c.setopt(c.WRITEFUNCTION, c.body.write)
            m.add_handle(c)
    
        # get data
        num_handles = len(m.handles)
        while num_handles:
            while 1:
                ret, num_handles = m.perform()
                if ret != pycurl.E_CALL_MULTI_PERFORM:
                    break
                # currently no more I/O is pending, could do something in the meantime
                # (display a progress bar, etc.)
                m.select(1.0)
    
        for c in m.handles:
            # save info in standard Python attributes
            c.http_code = c.getinfo(c.HTTP_CODE)
    
        # print result
        for c in m.handles:
            self.assertEqual('success', c.body.getvalue().decode())
            self.assertEqual(200, c.http_code)
    
        assert len(timers) > 0
        # libcurl 7.23.0 produces a 0 timer
>       assert timers[0] >= 0
E       AssertionError: assert -1 >= 0

tests/multi_timer_test.py:79: AssertionError
=============================== warnings summary ===============================
/nix/store/i33dbdihhvxcpjg4s19zi683rxsng73f-python3.7-nose-1.3.7/lib/python3.7/site-packages/nose/importer.py:12
  /nix/store/i33dbdihhvxcpjg4s19zi683rxsng73f-python3.7-nose-1.3.7/lib/python3.7/site-packages/nose/importer.py:12: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
    from imp import find_module, load_module, acquire_lock, release_lock

tests/setopt_lifecycle_test.py:19
  /build/pycurl-7.43.0.3/tests/setopt_lifecycle_test.py:19: PytestCollectionWarning: cannot collect test class 'TestString' because it has a __new__ constructor (from: tests/setopt_lifecycle_test.py)
    class TestString(str):

tests/setopt_test.py::SetoptTest::test_set_httpheader_none
  /build/pycurl-7.43.0.3/tests/setopt_test.py:75: DeprecationWarning: Please use assertEqual instead.
    self.assertEquals(util.b('foo'), io.getvalue())

tests/setopt_test.py::SetoptTest::test_set_httpheader_none
  /build/pycurl-7.43.0.3/tests/setopt_test.py:81: DeprecationWarning: Please use assertEqual instead.
    self.assertEquals(util.b(''), io.getvalue())

tests/setopt_test.py::SetoptTest::test_unset_httpheader
  /build/pycurl-7.43.0.3/tests/setopt_test.py:61: DeprecationWarning: Please use assertEqual instead.
    self.assertEquals(util.b('foo'), io.getvalue())

tests/setopt_test.py::SetoptTest::test_unset_httpheader
  /build/pycurl-7.43.0.3/tests/setopt_test.py:67: DeprecationWarning: Please use assertEqual instead.
    self.assertEquals(util.b(''), io.getvalue())

-- Docs: https://docs.pytest.org/en/latest/warnings.html
===Flaky Test Report===

test_curl_ref passed 1 out of the required 1 times. Success!
test_opensocketfunction_collection failed (2 runs remaining out of 3).
        <class 'AssertionError'>
        False is not true
        [<TracebackEntry /build/pycurl-7.43.0.3/tests/multi_memory_mgmt_test.py:18>, <TracebackEntry /build/pycurl-7.43.0.3/tests/multi_memory_mgmt_test.py:42>]
test_opensocketfunction_collection passed 1 out of the required 1 times. Success!
test_seekfunction_collection passed 1 out of the required 1 times. Success!
test_multi_socket_select passed 1 out of the required 1 times. Success!
test_pause_via_call passed 1 out of the required 1 times. Success!
test_pause_via_return passed 1 out of the required 1 times. Success!
test_post_byte_buffer passed 1 out of the required 1 times. Success!
test_post_fields_with_ampersand passed 1 out of the required 1 times. Success!
test_post_file passed 1 out of the required 1 times. Success!
test_post_list_of_list_of_lists passed 1 out of the required 1 times. Success!
test_post_list_of_tuple_of_tuples passed 1 out of the required 1 times. Success!
test_post_multiple_fields passed 1 out of the required 1 times. Success!
test_post_single_field passed 1 out of the required 1 times. Success!
test_post_tuple_of_lists_of_tuples passed 1 out of the required 1 times. Success!
test_post_tuple_of_tuple_of_lists passed 1 out of the required 1 times. Success!
test_post_tuple_of_tuples_of_tuples passed 1 out of the required 1 times. Success!
test_post_unicode_buffer passed 1 out of the required 1 times. Success!
test_post_with_null_byte passed 1 out of the required 1 times. Success!

===End Flaky Test Report===
===== 1 failed, 348 passed, 7 skipped, 9 deselected, 6 warnings in 24.52s ======
/nix/store/a8ns51yifkzjwnhcp019jdk1nw1g5xd5-openssl-1.1.1g-man/share/man/man3/BN_add_word.3ssl
/nix/store/a8ns51yifkzjwnhcp019jdk1nw1g5xd5-openssl-1.1.1g-man/share/man/man3/BN_sub_word.3ssl -> /nix/store/a8ns51yifkzjwnhcp019jdk1nw1g5xd5-openssl-1.1.1g-man/share/man/man3/BN_add_word.3ssl
/nix/store/a8ns51yifkzjwnhcp019jdk1nw1g5xd5-openssl-1.1.1g-man/share/man/man3/BN_mul_word.3ssl -> /nix/store/a8ns51yifkzjwnhcp019jdk1nw1g5xd5-openssl-1.1.1g-man/share/man/man3/BN_add_word.3ssl
/nix/store/a8ns51yifkzjwnhcp019jdk1nw1g5xd5-openssl-1.1.1g-man/share/man/man3/BN_div_word.3ssl -> /nix/store/a8ns51yifkzjwnhcp019jdk1nw1g5xd5-openssl-1.1.1g-man/share/man/man3/BN_add_word.3ssl
/nix/store/a8ns51yifkzjwnhcp019jdk1nw1g5xd5-openssl-1.1.1g-man/share/man/man3/BN_mod_word.3ssl -> /nix/store/a8ns51yifkzjwnhcp019jdk1nw1g5xd5-openssl-1.1.1g-man/share/man/man3/BN_add_word.3ssl
part1part2
builder for '/nix/store/3x4ap3vhiqxy3slpfhzjdk8yf1lgxqdr-python3.7-pycurl-7.43.0.3.drv' failed with exit code 1
building '/nix/store/9bwzk241j16lmdxivkz86zfm5j6vwijd-quran-de.r50979.tar.xz.drv'...
cannot build derivation '/nix/store/vq78sxmf3a3vvffgx4ddgi4f32vw2pa6-system-config-printer-1.5.12.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/4sma4iidcq785sp3gs6lrhkxgk6l9ncr-dbus-1.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/bfkmi6ams2hwydrc4nnb3jf28b3w7ci2-hwdb.bin.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/sa085h7cg821qjs7pz98agz1av4wgdi6-system-generators.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/rbrr8vyd2qpfnahvbddxyviv2rykw72x-system-shutdown.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/j5jbjvhk00wb7p8hm5ifvxdqrc467f7g-system-units.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/9gn625nphz7aynacvrygn5w2j8sq2cpp-udev-rules.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/jwfqpglsjmg3d0377la736gnm8i3l7cf-user-units.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/d86h8wflc37y3z45z27rhjz6p3rf257q-etc.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/5i1n4fa6y25f4bj3l6kd1sn04npl7q8m-nixos-system-t25-20.03.git.58f884cd3d8.drv': 1 dependencies couldn't be built
error: build of '/nix/store/5i1n4fa6y25f4bj3l6kd1sn04npl7q8m-nixos-system-t25-20.03.git.58f884cd3d8.drv' failed

nh2 added a commit to nh2/nixpkgs that referenced this issue Jun 5, 2020
@nh2
Copy link
Contributor

nh2 commented Jun 5, 2020

PR at #89544

@nh2
Copy link
Contributor

nh2 commented Jun 15, 2020

And another one multi_timer_test.py:

=================================== FAILURES ===================================
_______________________ MultiSocketTest.test_multi_timer _______________________

self = <tests.multi_timer_test.MultiSocketTest testMethod=test_multi_timer>

    def test_multi_timer(self):
        urls = [
            'http://%s:8380/success' % localhost,
            'http://%s:8381/success' % localhost,
            'http://%s:8382/success' % localhost,
        ]
    
        timers = []
    
        # timer callback
        def timer(msecs):
            #print('Timer callback msecs:', msecs)
            timers.append(msecs)
    
        # init
        m = pycurl.CurlMulti()
        m.setopt(pycurl.M_TIMERFUNCTION, timer)
        m.handles = []
        for url in urls:
            c = util.DefaultCurl()
            # save info in standard Python attributes
            c.url = url
            c.body = util.BytesIO()
            c.http_code = -1
            m.handles.append(c)
            # pycurl API calls
            c.setopt(c.URL, c.url)
            c.setopt(c.WRITEFUNCTION, c.body.write)
            m.add_handle(c)
    
        # get data
        num_handles = len(m.handles)
        while num_handles:
            while 1:
                ret, num_handles = m.perform()
                if ret != pycurl.E_CALL_MULTI_PERFORM:
                    break
                # currently no more I/O is pending, could do something in the meantime
                # (display a progress bar, etc.)
                m.select(1.0)
    
        for c in m.handles:
            # save info in standard Python attributes
            c.http_code = c.getinfo(c.HTTP_CODE)
    
        # print result
        for c in m.handles:
            self.assertEqual('success', c.body.getvalue().decode())
            self.assertEqual(200, c.http_code)
    
        assert len(timers) > 0
        # libcurl 7.23.0 produces a 0 timer
>       assert timers[0] >= 0
E       AssertionError: assert -1 >= 0

tests/multi_timer_test.py:79: AssertionError

PR: #90481

nh2 added a commit to nh2/nixpkgs that referenced this issue Jun 15, 2020
nh2 added a commit to nh2/nixpkgs that referenced this issue Jun 15, 2020
jonringer pushed a commit that referenced this issue Jun 15, 2020
jonringer pushed a commit that referenced this issue Jun 15, 2020
github-actions bot added a commit to pbogdan/nix-hie that referenced this issue Jun 17, 2020
## Motivation

Dependencies should be up to date.

## Changelog for stable:
Commits: [NixOS/nixpkgs@db31e48c...a84b797b](NixOS/nixpkgs@db31e48...a84b797)

* [`8759f46c`](NixOS/nixpkgs@8759f46) sane-airscan: 0.99.0 -> 0.99.3
* [`573b24ee`](NixOS/nixpkgs@573b24e) python2Packages.nixpart0/cryptsetup: patch for glibc >= 2.28
* [`5858bc26`](NixOS/nixpkgs@5858bc2) python2Packages.nixpart0/lvm2: patch for glibc >= 2.28
* [`497b2153`](NixOS/nixpkgs@497b215) python2Packages.nixpart0/multipath_tools: patch for glibc >= 2.28
* [`1ecfb2cc`](NixOS/nixpkgs@1ecfb2c) python2Packages.nixpart0/parted: patch for glibc >= 2.28
* [`4fa1d54d`](NixOS/nixpkgs@4fa1d54) python2Packages.nixpart0/pyblock: patch for glibc >= 2.28
* [`daace8a6`](NixOS/nixpkgs@daace8a) python2Packages.nixpart0/multipath_tools: fixup path to internal libraries
* [`126fb3ae`](NixOS/nixpkgs@126fb3a) bbswitch: fix build with Linux kernel version >= 5.6.0
* [`10e5f1f8`](NixOS/nixpkgs@10e5f1f) intltool: add a backup url for a patch
* [`1594eb93`](NixOS/nixpkgs@1594eb9) postfix: 3.4.9 -> 3.4.10
* [`41268a30`](NixOS/nixpkgs@41268a3) postfix: 3.4.10 -> 3.4.12
* [`4351ace9`](NixOS/nixpkgs@4351ace) postfix: 3.4.12 -> 3.4.13
* [`db0200e5`](NixOS/nixpkgs@db0200e) system-config-printer: Fix ABRT: free(): invalid pointer
* [`ae27952d`](NixOS/nixpkgs@ae27952) pycurl: Exclude another flaky test. Fixes NixOS/nixpkgs#77304
* [`a84b797b`](NixOS/nixpkgs@a84b797) pycurl: Exclude flaky multi_timer_test. Fixes NixOS/nixpkgs#77304
dfinity-bot added a commit to dfinity/motoko that referenced this issue Jun 22, 2020
## Changelog for nixpkgs:
Commits: [NixOS/nixpkgs@fb5517f5...210d7a17](NixOS/nixpkgs@fb5517f...210d7a1)

* [`6567ff5a`](NixOS/nixpkgs@6567ff5) colormake: use fetchFromGitHub
* [`17a61064`](NixOS/nixpkgs@17a6106) go-bindata: use fetchFromGitHub
* [`79d7841e`](NixOS/nixpkgs@79d7841) mautrix-whatsapp: 2020-05-29 -> 2020-06-01
* [`bf8b9464`](NixOS/nixpkgs@bf8b946) wire-desktop: linux 3.17.2924 -> 3.18.2925
* [`4606ae3e`](NixOS/nixpkgs@4606ae3) wire-desktop: mac 3.17.3666 -> 3.18.3728
* [`61978779`](NixOS/nixpkgs@6197877) roundcube: 1.4.4 -> 1.4.5
* [`ede11844`](NixOS/nixpkgs@ede1184) jetbrains: update
* [`75322687`](NixOS/nixpkgs@7532268) tor-browser-bundle-bin: 9.0.9 -> 9.5
* [`28d19fad`](NixOS/nixpkgs@28d19fa) atlassian-confluence: 7.3.4 -> 7.4.0
* [`5c5e3869`](NixOS/nixpkgs@5c5e386) atlassian-confluence: 7.4.0 -> 7.5.0
* [`ca7a4d1c`](NixOS/nixpkgs@ca7a4d1) grafana: 6.7.1 -> 6.7.4
* [`3a0a5e54`](NixOS/nixpkgs@3a0a5e5) gitlab: 12.8.10 -> 12.10.6
* [`2968e6fd`](NixOS/nixpkgs@2968e6f) gitlab: increase webpack memory limit
* [`3069def9`](NixOS/nixpkgs@3069def) nixos/gitlab: use new structure.sql
* [`d181fdf8`](NixOS/nixpkgs@d181fdf) gitaly: revert a commit that broke config loading
* [`6bd20ee2`](NixOS/nixpkgs@6bd20ee) gitaly: fix gitlab-shell-config path patching
* [`06106398`](NixOS/nixpkgs@0610639) gitlab: 12.10.6 -> 12.10.8
* [`2947a53a`](NixOS/nixpkgs@2947a53) gitlab: 12.10.8 -> 12.10.9
* [`1ce9a006`](NixOS/nixpkgs@1ce9a00) kdeFrameworks.qqc2-desktop-style: init at 5.68
* [`bad756a2`](NixOS/nixpkgs@bad756a) riot-web: 1.6.2 -> 1.6.3
* [`ea2d173e`](NixOS/nixpkgs@ea2d173) riot-desktop: 1.6.2 -> 1.6.3
* [`67970814`](NixOS/nixpkgs@6797081) atlassian-jira: 8.8.0 -> 8.9.0
* [`1f54141d`](NixOS/nixpkgs@1f54141) atlassian-confluence: 7.5.0 -> 7.5.1
* [`65240798`](NixOS/nixpkgs@6524079) linux: 4.14.182 -> 4.14.183
* [`1f96786d`](NixOS/nixpkgs@1f96786) linux: 4.19.125 -> 4.19.126
* [`9ecbc8d2`](NixOS/nixpkgs@9ecbc8d) linux: 4.4.225 -> 4.4.226
* [`e8f06879`](NixOS/nixpkgs@e8f0687) linux: 4.9.225 -> 4.9.226
* [`114bc19e`](NixOS/nixpkgs@114bc19) linux: 5.4.43 -> 5.4.44
* [`fdfd5ab0`](NixOS/nixpkgs@fdfd5ab) linux: 5.6.15 -> 5.6.16
* [`b96198c9`](NixOS/nixpkgs@b96198c) chromium: 83.0.4103.61 -> 83.0.4103.97
* [`cd6ea1df`](NixOS/nixpkgs@cd6ea1d) xpra: fix NixOS/nixpkgs#85694
* [`79ac3258`](NixOS/nixpkgs@79ac325) xpra: fix NixOS/nixpkgs#41106
* [`82ef74d0`](NixOS/nixpkgs@82ef74d) xpra: adjust patches
* [`e1ff9d38`](NixOS/nixpkgs@e1ff9d3) youtube-dl: 2020.05.29 -> 2020.06.06
* [`29c0151c`](NixOS/nixpkgs@29c0151) Merge NixOS/nixpkgs#89474: thunderbird*: 68.8.1 -> 68.9.0 (security)
* [`a0466d5d`](NixOS/nixpkgs@a0466d5) mautrix-whatsapp: 2020-06-01 -> 0.1.1
* [`33d51b7d`](NixOS/nixpkgs@33d51b7) riot-web: 1.6.3 -> 1.6.4
* [`f277096c`](NixOS/nixpkgs@f277096) riot-desktop: 1.6.3 -> 1.6.4
* [`e33969c1`](NixOS/nixpkgs@e33969c) chromiumBeta: Fix the source hash
* [`83b5900a`](NixOS/nixpkgs@83b5900) fwupd: 1.3.7 → 1.3.8
* [`a2add30b`](NixOS/nixpkgs@a2add30) fwupd: 1.3.8 → 1.3.9
* [`af29475a`](NixOS/nixpkgs@af29475) palemoon: 28.9.1 -> 28.9.3
* [`6956305a`](NixOS/nixpkgs@6956305) borgbackup: 1.1.11 -> 1.1.13
* [`0c2ddc1d`](NixOS/nixpkgs@0c2ddc1) epkowa: fix parsing of interpreters (NixOS/nixpkgs#82909) (NixOS/nixpkgs#89506)
* [`11c84a90`](NixOS/nixpkgs@11c84a9) boot: fix order of arguments for `hasPrefix` (NixOS/nixpkgs#89751)
* [`3154bb9b`](NixOS/nixpkgs@3154bb9) roundcube: 1.4.5 -> 1.4.6
* [`cc28f9ce`](NixOS/nixpkgs@cc28f9c) i3status-rust: 0.13.1 -> 0.14.0
* [`7a7fcac4`](NixOS/nixpkgs@7a7fcac) dlib: 19.19 -> 19.20
* [`f8463ef8`](NixOS/nixpkgs@f8463ef) cargo-make: 0.30.8 -> 0.31.0
* [`90057c5b`](NixOS/nixpkgs@90057c5) jool: 4.0.5 -> 4.0.9
* [`392b8bc9`](NixOS/nixpkgs@392b8bc) nixos-artwork: add file path attributes
* [`20bfce50`](NixOS/nixpkgs@20bfce5) nixos/lightdm: change background type to path
* [`489ebe45`](NixOS/nixpkgs@489ebe4) nixos/gnome3: install nixos wallpapers
* [`b2bd9376`](NixOS/nixpkgs@b2bd937) nixos/pantheon: install nixos wallpaper
* [`82dc55e2`](NixOS/nixpkgs@82dc55e) atlassian-crowd: 3.4.5 -> 4.0.2
* [`b6042f56`](NixOS/nixpkgs@b6042f5) moosefs: fix datapath for mfscgiserv
* [`4340dd72`](NixOS/nixpkgs@4340dd7) nixos/nextcloud: preserve OC_PASS env variable in the occ wrapper
* [`8759f46c`](NixOS/nixpkgs@8759f46) sane-airscan: 0.99.0 -> 0.99.3
* [`b119c093`](NixOS/nixpkgs@b119c09) flake.nix: Remove edition field
* [`582b4bb4`](NixOS/nixpkgs@582b4bb) nss_3_52: 3.52.0 -> 3.52.1
* [`e3e66c80`](NixOS/nixpkgs@e3e66c8) rust-cbindgen_0_14_1: init
* [`03be5f3d`](NixOS/nixpkgs@03be5f3) firefox: 76.0.1 -> 77.0.1
* [`f7446a59`](NixOS/nixpkgs@f7446a5) firefox-esr-68: 68.8.0esr -> 68.9.0esr
* [`fb932996`](NixOS/nixpkgs@fb93299) firefox-bin: 76.0 -> 77.0.1
* [`4a644cc7`](NixOS/nixpkgs@4a644cc) sympa: 6.2.54 -> 6.2.56
* [`70717a33`](NixOS/nixpkgs@70717a3) nix: 2.3.6 -> 2.3.6
* [`2678e4fc`](NixOS/nixpkgs@2678e4f) pantheon.appcenter: 3.2.4 -> 3.3.0
* [`9fdefdc9`](NixOS/nixpkgs@9fdefdc) pantheon.switchboard: 2.3.9 -> 2.4.0
* [`016f42b3`](NixOS/nixpkgs@016f42b) pantheon.elementary-icon-theme: 5.2.0 -> 5.3.0
* [`3b4dbf34`](NixOS/nixpkgs@3b4dbf3) pantheon.granite: 5.3.1 -> 5.4.0
* [`c064cd05`](NixOS/nixpkgs@c064cd0) pantheon.wingpanel-applications-menu: 2.6.0 -> 2.7.0
* [`c0c768b6`](NixOS/nixpkgs@c0c768b) pantheon.gala: 3.3.1 -> 3.3.2
* [`044c9a43`](NixOS/nixpkgs@044c9a4) pantheon.appcenter: 3.3.0 -> 3.4.0
* [`3c96a131`](NixOS/nixpkgs@3c96a13) pantheon.elementary-icon-theme: 5.3.0 -> 5.3.1
* [`adacfd02`](NixOS/nixpkgs@adacfd0) pantheon.elementary-calendar: 5.0.4 -> 5.0.5
* [`d71bdb2e`](NixOS/nixpkgs@d71bdb2) pantheon.elementary-files: 4.4.2 -> 4.4.3
* [`adca4a37`](NixOS/nixpkgs@adca4a3) pantheon.sideload: 1.1.0 -> 1.1.1
* [`85146f0f`](NixOS/nixpkgs@85146f0) pantheon.elementary-greeter: 5.0.3 -> 5.0.4
* [`8f24062f`](NixOS/nixpkgs@8f24062) pantheon.pantheon-agent-polkit: 1.0.1 -> 1.0.2
* [`0d8445d0`](NixOS/nixpkgs@0d8445d) pantheon.wingpanel-indicator-network: 2.2.3 -> 2.2.4
* [`4a25ae59`](NixOS/nixpkgs@4a25ae5) pantheon.wingpanel-applications-menu: 2.7.0 -> 2.7.1
* [`ae8c62cb`](NixOS/nixpkgs@ae8c62c) pantheon.elementary-shortcut-overlay: 1.1.1 -> 1.1.2
* [`ac21fd75`](NixOS/nixpkgs@ac21fd7) pantheon.elementary-onboarding: 1.2.0 -> 1.2.1
* [`df72656b`](NixOS/nixpkgs@df72656) pantheon.switchboard-plug-about: 2.6.2 -> 2.6.3
* [`77804794`](NixOS/nixpkgs@7780479) pantheon.switchboard-plug-bluetooth: 2.3.1 -> 2.3.2
* [`34ce3952`](NixOS/nixpkgs@34ce395) pantheon.switchboard-plug-datetime: 2.1.7 -> 2.1.9
* [`d3805ad5`](NixOS/nixpkgs@d3805ad) pantheon.switchboard-plug-display: 2.2.1 -> 2.2.2
* [`489245ed`](NixOS/nixpkgs@489245e) pantheon.switchboard-plug-mouse-touchpad: 2.4.1 -> 2.4.2
* [`68d7569d`](NixOS/nixpkgs@68d7569) pantheon.switchboard-plug-network: 2.3.0 -> 2.3.1
* [`e40d5b5f`](NixOS/nixpkgs@e40d5b5) pantheon.switchboard-plug-notifications: 2.1.6 -> 2.1.7
* [`d8cac264`](NixOS/nixpkgs@d8cac26) pantheon.switchboard-plug-power: 2.4.1 -> 2.4.2
* [`5421f401`](NixOS/nixpkgs@5421f40) pantheon.switchboard-plug-printers: 2.1.8 -> 2.1.9
* [`003af9ca`](NixOS/nixpkgs@003af9c) pantheon.switchboard-plug-security-privacy: 2.2.3 -> 2.2.4
* [`b3a58026`](NixOS/nixpkgs@b3a5802) pantheon.switchboard-plug-sound: 2.2.3 -> 2.2.4
* [`034c9b1e`](NixOS/nixpkgs@034c9b1) pyxdg: fix missing class field Type
* [`bf571328`](NixOS/nixpkgs@bf57132) gcc: Fix MinGW exception handling so Rust works
* [`06e882b0`](NixOS/nixpkgs@06e882b) gcc: Clean up configure flags
* [`b845898c`](NixOS/nixpkgs@b845898) graylog: 3.2.5 -> 3.3.0
* [`974353b2`](NixOS/nixpkgs@974353b) graylogPlugins: Update and add plugins
* [`a83164c2`](NixOS/nixpkgs@a83164c) linux: 4.19.126 -> 4.19.127
* [`a91a07a0`](NixOS/nixpkgs@a91a07a) linux: 5.4.44 -> 5.4.45
* [`f6f6d507`](NixOS/nixpkgs@f6f6d50) linux: 5.6.16 -> 5.6.17
* [`ca6e453f`](NixOS/nixpkgs@ca6e453) coq_8_11: 8.11.1 → 8.11.2
* [`03da8782`](NixOS/nixpkgs@03da878) gnutls: 3.6.13 -> 3.6.14
* [`d68215db`](NixOS/nixpkgs@d68215d) Merge NixOS/nixpkgs#89029: sqlite: 3.30.1 -> 3.32.2 (security)
* [`92d5b1b5`](NixOS/nixpkgs@92d5b1b) hydra-unstable: 2020-04-16 -> 2020-06-01
* [`fc382da4`](NixOS/nixpkgs@fc382da) hostapd: apply patches for CVE-2020-12695
* [`123d8314`](NixOS/nixpkgs@123d831) mumble: 1.3.0 -> 1.3.1 (NixOS/nixpkgs#89988)
* [`1763fe3f`](NixOS/nixpkgs@1763fe3) microcodeIntel: 20200508 → 20200520
* [`57f7f175`](NixOS/nixpkgs@57f7f17) microcodeIntel: 20200520 -> 20200609
* [`159c6a73`](NixOS/nixpkgs@159c6a7) chromiumDev: Fix the configuration phase
* [`48f3b974`](NixOS/nixpkgs@48f3b97) chromiumBeta: Fix the configuration phase
* [`e0c7e1fd`](NixOS/nixpkgs@e0c7e1f) chromium{Beta,Dev}: Fix the builds
* [`118e07c3`](NixOS/nixpkgs@118e07c) slurm: 19.05.5.1 -> 19.05.7.1
* [`8946799e`](NixOS/nixpkgs@8946799) slurm: bugifx, add su/echo paths
* [`3f31c0d2`](NixOS/nixpkgs@3f31c0d) nixos/sympa: fix PATH_INFO splitting for sympa-6.2.56
* [`0094820f`](NixOS/nixpkgs@0094820) hostapd: add hexa as maintainer
* [`3748b5f2`](NixOS/nixpkgs@3748b5f) gitlab: 12.10.9 -> 12.10.11
* [`a8086278`](NixOS/nixpkgs@a808627) linux: 4.14.183 -> 4.14.184
* [`d8a5c622`](NixOS/nixpkgs@d8a5c62) linux: 4.19.127 -> 4.19.128
* [`ff24b8ad`](NixOS/nixpkgs@ff24b8a) linux: 4.4.226 -> 4.4.227
* [`5bcdf900`](NixOS/nixpkgs@5bcdf90) linux: 4.9.226 -> 4.9.227
* [`adeb94a5`](NixOS/nixpkgs@adeb94a) linux: 5.4.45 -> 5.4.46
* [`f09d7434`](NixOS/nixpkgs@f09d743) linux: 5.6.17 -> 5.6.18
* [`e2f9675e`](NixOS/nixpkgs@e2f9675) signal-desktop: 1.34.1 -> 1.34.2
* [`f5e34473`](NixOS/nixpkgs@f5e3447) gitAndTools.gh: add github-cli alias
* [`10ceb8f5`](NixOS/nixpkgs@10ceb8f) gitAndTools.gh: 0.9.0 -> 0.10.0
* [`b6cda510`](NixOS/nixpkgs@b6cda51) poezio: add missing setuptools dependency
* [`db31e48c`](NixOS/nixpkgs@db31e48) python.pkgs.apsw: 3.30.1-r1 -> 3.32.2-r1
* [`807d383c`](NixOS/nixpkgs@807d383) palemoon: 28.9.3 -> 28.10.0
* [`098fdc6b`](NixOS/nixpkgs@098fdc6) treewide: central.maven.org -> repo1.maven.org
* [`f6faec26`](NixOS/nixpkgs@f6faec2) nextcloud: 18.0.4 -> 18.0.6
* [`573b24ee`](NixOS/nixpkgs@573b24e) python2Packages.nixpart0/cryptsetup: patch for glibc >= 2.28
* [`5858bc26`](NixOS/nixpkgs@5858bc2) python2Packages.nixpart0/lvm2: patch for glibc >= 2.28
* [`497b2153`](NixOS/nixpkgs@497b215) python2Packages.nixpart0/multipath_tools: patch for glibc >= 2.28
* [`1ecfb2cc`](NixOS/nixpkgs@1ecfb2c) python2Packages.nixpart0/parted: patch for glibc >= 2.28
* [`4fa1d54d`](NixOS/nixpkgs@4fa1d54) python2Packages.nixpart0/pyblock: patch for glibc >= 2.28
* [`daace8a6`](NixOS/nixpkgs@daace8a) python2Packages.nixpart0/multipath_tools: fixup path to internal libraries
* [`126fb3ae`](NixOS/nixpkgs@126fb3a) bbswitch: fix build with Linux kernel version >= 5.6.0
* [`10e5f1f8`](NixOS/nixpkgs@10e5f1f) intltool: add a backup url for a patch
* [`1594eb93`](NixOS/nixpkgs@1594eb9) postfix: 3.4.9 -> 3.4.10
* [`41268a30`](NixOS/nixpkgs@41268a3) postfix: 3.4.10 -> 3.4.12
* [`4351ace9`](NixOS/nixpkgs@4351ace) postfix: 3.4.12 -> 3.4.13
* [`db0200e5`](NixOS/nixpkgs@db0200e) system-config-printer: Fix ABRT: free(): invalid pointer
* [`ae27952d`](NixOS/nixpkgs@ae27952) pycurl: Exclude another flaky test. Fixes NixOS/nixpkgs#77304
* [`a84b797b`](NixOS/nixpkgs@a84b797) pycurl: Exclude flaky multi_timer_test. Fixes NixOS/nixpkgs#77304
* [`b0bfe9b5`](NixOS/nixpkgs@b0bfe9b) chromium: Build with VA-API but disable it by default
* [`0d8250ae`](NixOS/nixpkgs@0d8250a) chromium: 83.0.4103.97 -> 83.0.4103.106
* [`70ecf772`](NixOS/nixpkgs@70ecf77) graylog: 3.3.0 -> 3.3.1
* [`60da5edb`](NixOS/nixpkgs@60da5ed) graylogPlugins: Update plugins
* [`02b95cf5`](NixOS/nixpkgs@02b95cf) strace-graph: fix strace-graph shebang which points to perl
* [`dce9ef51`](NixOS/nixpkgs@dce9ef5) youtube-dl: 2020.06.06 -> 2020.06.16.1
* [`c27866c8`](NixOS/nixpkgs@c27866c) microcodeIntel: 20200609 -> 20200616
* [`724d123a`](NixOS/nixpkgs@724d123) riot-web: 1.6.4 -> 1.6.5
* [`8ab112eb`](NixOS/nixpkgs@8ab112e) riot-desktop: 1.6.4 -> 1.6.5
* [`b2a6d2fa`](NixOS/nixpkgs@b2a6d2f) linuxPackages.wireguard: 1.0.20200520 -> 1.0.20200611
* [`243f698a`](NixOS/nixpkgs@243f698) vagrant: 2.2.8 -> 2.2.9
* [`c5fd298d`](NixOS/nixpkgs@c5fd298) vlc: 3.0.8 -> 3.0.11 (security)
* [`bb4fd7eb`](NixOS/nixpkgs@bb4fd7e) haskellPackages.geojson: Unmark as broken
* [`583ccf8c`](NixOS/nixpkgs@583ccf8) Don't enable nix-bash-completions when using Nix 2.4
* [`80b50f32`](NixOS/nixpkgs@80b50f3) fwupd: add patch for CVE-2020-10759
* [`725c4fdb`](NixOS/nixpkgs@725c4fd) google-chrome: add coreutils to PATH
* [`9e379117`](NixOS/nixpkgs@9e37911) xdg_utils: xdg-open: add $out to PATH
* [`73d7516c`](NixOS/nixpkgs@73d7516) matrix-synapse: 1.14.0 -> 1.15.1
* [`f70a5992`](NixOS/nixpkgs@f70a599) nixos/gnome3: nixos-artwork -> pkgs.nixos-artwork
* [`87cde1cf`](NixOS/nixpkgs@87cde1c) pantheon.elementary-code: 3.4.0 -> 3.4.1
* [`30c703cb`](NixOS/nixpkgs@30c703c) nixos/sudo: default rule should be first
* [`5e1de952`](NixOS/nixpkgs@5e1de95) json_c: add patch for CVE-2020-12762
* [`6cd67ec4`](NixOS/nixpkgs@6cd67ec) go: stop setting GOPATH
* [`296e584a`](NixOS/nixpkgs@296e584) go_1_13: stop setting GOPATH
* [`c9965e2d`](NixOS/nixpkgs@c9965e2) go_1_12: stop setting GOPATH
* [`382b2dba`](NixOS/nixpkgs@382b2db) go: 1.14.1 -> 1.14.2
* [`2a1c67cb`](NixOS/nixpkgs@2a1c67c) go: 1.14.2 -> 1.14.3
* [`203fcbad`](NixOS/nixpkgs@203fcba) go_1_13: 1.13.8 -> 1.13.11
* [`b1cbd087`](NixOS/nixpkgs@b1cbd08) go_1_13: 1.13.11 -> 1.13.12
* [`16a461d1`](NixOS/nixpkgs@16a461d) go: 1.14.3 -> 1.14.4
* [`4094b363`](NixOS/nixpkgs@4094b36) go: fix TestDontCacheBrokenHTTP2Conn failure
* [`9ae22e34`](NixOS/nixpkgs@9ae22e3) buildGoModule: passthru the modSha256 (NixOS/nixpkgs#82027)
* [`470d5558`](NixOS/nixpkgs@470d555) go-modules: Augment builds w/ vendor src
* [`124d70cc`](NixOS/nixpkgs@124d70c) go-modules: Add in old modsha256 w/ warning
* [`e3ca027f`](NixOS/nixpkgs@e3ca027) libexif: 0.6.21 -> 0.6.22
* [`4e48231c`](NixOS/nixpkgs@4e48231) luajit*: patch CVE-2019-19391
* [`0ba08838`](NixOS/nixpkgs@0ba0883) libjpeg(-turbo): patch CVE-2020-13790
* [`788764b1`](NixOS/nixpkgs@788764b) transmission: patch CVE-2018-10756
* [`2b417708`](NixOS/nixpkgs@2b41770) Remove Google Talk Plugin
* [`fd8bbb8b`](NixOS/nixpkgs@fd8bbb8) mutt: patch for CVE-2020-14093
* [`0a29dda8`](NixOS/nixpkgs@0a29dda) monero: 0.15.0.1 -> 0.16.0.0
* [`7587e079`](NixOS/nixpkgs@7587e07) monero-gui: 0.15.0.4 -> 0.16.0.0
* [`199de046`](NixOS/nixpkgs@199de04) mwprocapture: 1.2.4054 -> 1.2.4177
* [`48a6a8b9`](NixOS/nixpkgs@48a6a8b) sv-kalendar: fix meta
* [`8b38149d`](NixOS/nixpkgs@8b38149) jhead: 3.03 -> 3.04
* [`2a0c1294`](NixOS/nixpkgs@2a0c129) neomutt: Make it not reference .dev outputs.
* [`5ca29c7a`](NixOS/nixpkgs@5ca29c7) neomutt: make manual.txt not empty
* [`657aa0bf`](NixOS/nixpkgs@657aa0b) neomutt: Remove old fixes for failing tests
* [`c9ad4681`](NixOS/nixpkgs@c9ad468) neomutt: 20200501 -> 20200619
* [`694939b0`](NixOS/nixpkgs@694939b) flashplayer: 32.0.0.363 -> 32.0.0.371
* [`a4a203e9`](NixOS/nixpkgs@a4a203e) flashplayer: 32.0.0.371 -> 32.0.0.387
* [`cdd1ecea`](NixOS/nixpkgs@cdd1ece) nextcloud19: init at 19.0.0
* [`6a99d5d6`](NixOS/nixpkgs@6a99d5d) nixos/nextcloud: add occ internal option
* [`210d7a17`](NixOS/nixpkgs@210d7a1) lepton: 1.2.1 → 2019-08-20
mergify bot pushed a commit to dfinity/motoko that referenced this issue Jun 22, 2020
## Changelog for nixpkgs:
Commits: [NixOS/nixpkgs@fb5517f5...210d7a17](NixOS/nixpkgs@fb5517f...210d7a1)

* [`6567ff5a`](NixOS/nixpkgs@6567ff5) colormake: use fetchFromGitHub
* [`17a61064`](NixOS/nixpkgs@17a6106) go-bindata: use fetchFromGitHub
* [`79d7841e`](NixOS/nixpkgs@79d7841) mautrix-whatsapp: 2020-05-29 -> 2020-06-01
* [`bf8b9464`](NixOS/nixpkgs@bf8b946) wire-desktop: linux 3.17.2924 -> 3.18.2925
* [`4606ae3e`](NixOS/nixpkgs@4606ae3) wire-desktop: mac 3.17.3666 -> 3.18.3728
* [`61978779`](NixOS/nixpkgs@6197877) roundcube: 1.4.4 -> 1.4.5
* [`ede11844`](NixOS/nixpkgs@ede1184) jetbrains: update
* [`75322687`](NixOS/nixpkgs@7532268) tor-browser-bundle-bin: 9.0.9 -> 9.5
* [`28d19fad`](NixOS/nixpkgs@28d19fa) atlassian-confluence: 7.3.4 -> 7.4.0
* [`5c5e3869`](NixOS/nixpkgs@5c5e386) atlassian-confluence: 7.4.0 -> 7.5.0
* [`ca7a4d1c`](NixOS/nixpkgs@ca7a4d1) grafana: 6.7.1 -> 6.7.4
* [`3a0a5e54`](NixOS/nixpkgs@3a0a5e5) gitlab: 12.8.10 -> 12.10.6
* [`2968e6fd`](NixOS/nixpkgs@2968e6f) gitlab: increase webpack memory limit
* [`3069def9`](NixOS/nixpkgs@3069def) nixos/gitlab: use new structure.sql
* [`d181fdf8`](NixOS/nixpkgs@d181fdf) gitaly: revert a commit that broke config loading
* [`6bd20ee2`](NixOS/nixpkgs@6bd20ee) gitaly: fix gitlab-shell-config path patching
* [`06106398`](NixOS/nixpkgs@0610639) gitlab: 12.10.6 -> 12.10.8
* [`2947a53a`](NixOS/nixpkgs@2947a53) gitlab: 12.10.8 -> 12.10.9
* [`1ce9a006`](NixOS/nixpkgs@1ce9a00) kdeFrameworks.qqc2-desktop-style: init at 5.68
* [`bad756a2`](NixOS/nixpkgs@bad756a) riot-web: 1.6.2 -> 1.6.3
* [`ea2d173e`](NixOS/nixpkgs@ea2d173) riot-desktop: 1.6.2 -> 1.6.3
* [`67970814`](NixOS/nixpkgs@6797081) atlassian-jira: 8.8.0 -> 8.9.0
* [`1f54141d`](NixOS/nixpkgs@1f54141) atlassian-confluence: 7.5.0 -> 7.5.1
* [`65240798`](NixOS/nixpkgs@6524079) linux: 4.14.182 -> 4.14.183
* [`1f96786d`](NixOS/nixpkgs@1f96786) linux: 4.19.125 -> 4.19.126
* [`9ecbc8d2`](NixOS/nixpkgs@9ecbc8d) linux: 4.4.225 -> 4.4.226
* [`e8f06879`](NixOS/nixpkgs@e8f0687) linux: 4.9.225 -> 4.9.226
* [`114bc19e`](NixOS/nixpkgs@114bc19) linux: 5.4.43 -> 5.4.44
* [`fdfd5ab0`](NixOS/nixpkgs@fdfd5ab) linux: 5.6.15 -> 5.6.16
* [`b96198c9`](NixOS/nixpkgs@b96198c) chromium: 83.0.4103.61 -> 83.0.4103.97
* [`cd6ea1df`](NixOS/nixpkgs@cd6ea1d) xpra: fix NixOS/nixpkgs#85694
* [`79ac3258`](NixOS/nixpkgs@79ac325) xpra: fix NixOS/nixpkgs#41106
* [`82ef74d0`](NixOS/nixpkgs@82ef74d) xpra: adjust patches
* [`e1ff9d38`](NixOS/nixpkgs@e1ff9d3) youtube-dl: 2020.05.29 -> 2020.06.06
* [`29c0151c`](NixOS/nixpkgs@29c0151) Merge NixOS/nixpkgs#89474: thunderbird*: 68.8.1 -> 68.9.0 (security)
* [`a0466d5d`](NixOS/nixpkgs@a0466d5) mautrix-whatsapp: 2020-06-01 -> 0.1.1
* [`33d51b7d`](NixOS/nixpkgs@33d51b7) riot-web: 1.6.3 -> 1.6.4
* [`f277096c`](NixOS/nixpkgs@f277096) riot-desktop: 1.6.3 -> 1.6.4
* [`e33969c1`](NixOS/nixpkgs@e33969c) chromiumBeta: Fix the source hash
* [`83b5900a`](NixOS/nixpkgs@83b5900) fwupd: 1.3.7 → 1.3.8
* [`a2add30b`](NixOS/nixpkgs@a2add30) fwupd: 1.3.8 → 1.3.9
* [`af29475a`](NixOS/nixpkgs@af29475) palemoon: 28.9.1 -> 28.9.3
* [`6956305a`](NixOS/nixpkgs@6956305) borgbackup: 1.1.11 -> 1.1.13
* [`0c2ddc1d`](NixOS/nixpkgs@0c2ddc1) epkowa: fix parsing of interpreters (NixOS/nixpkgs#82909) (NixOS/nixpkgs#89506)
* [`11c84a90`](NixOS/nixpkgs@11c84a9) boot: fix order of arguments for `hasPrefix` (NixOS/nixpkgs#89751)
* [`3154bb9b`](NixOS/nixpkgs@3154bb9) roundcube: 1.4.5 -> 1.4.6
* [`cc28f9ce`](NixOS/nixpkgs@cc28f9c) i3status-rust: 0.13.1 -> 0.14.0
* [`7a7fcac4`](NixOS/nixpkgs@7a7fcac) dlib: 19.19 -> 19.20
* [`f8463ef8`](NixOS/nixpkgs@f8463ef) cargo-make: 0.30.8 -> 0.31.0
* [`90057c5b`](NixOS/nixpkgs@90057c5) jool: 4.0.5 -> 4.0.9
* [`392b8bc9`](NixOS/nixpkgs@392b8bc) nixos-artwork: add file path attributes
* [`20bfce50`](NixOS/nixpkgs@20bfce5) nixos/lightdm: change background type to path
* [`489ebe45`](NixOS/nixpkgs@489ebe4) nixos/gnome3: install nixos wallpapers
* [`b2bd9376`](NixOS/nixpkgs@b2bd937) nixos/pantheon: install nixos wallpaper
* [`82dc55e2`](NixOS/nixpkgs@82dc55e) atlassian-crowd: 3.4.5 -> 4.0.2
* [`b6042f56`](NixOS/nixpkgs@b6042f5) moosefs: fix datapath for mfscgiserv
* [`4340dd72`](NixOS/nixpkgs@4340dd7) nixos/nextcloud: preserve OC_PASS env variable in the occ wrapper
* [`8759f46c`](NixOS/nixpkgs@8759f46) sane-airscan: 0.99.0 -> 0.99.3
* [`b119c093`](NixOS/nixpkgs@b119c09) flake.nix: Remove edition field
* [`582b4bb4`](NixOS/nixpkgs@582b4bb) nss_3_52: 3.52.0 -> 3.52.1
* [`e3e66c80`](NixOS/nixpkgs@e3e66c8) rust-cbindgen_0_14_1: init
* [`03be5f3d`](NixOS/nixpkgs@03be5f3) firefox: 76.0.1 -> 77.0.1
* [`f7446a59`](NixOS/nixpkgs@f7446a5) firefox-esr-68: 68.8.0esr -> 68.9.0esr
* [`fb932996`](NixOS/nixpkgs@fb93299) firefox-bin: 76.0 -> 77.0.1
* [`4a644cc7`](NixOS/nixpkgs@4a644cc) sympa: 6.2.54 -> 6.2.56
* [`70717a33`](NixOS/nixpkgs@70717a3) nix: 2.3.6 -> 2.3.6
* [`2678e4fc`](NixOS/nixpkgs@2678e4f) pantheon.appcenter: 3.2.4 -> 3.3.0
* [`9fdefdc9`](NixOS/nixpkgs@9fdefdc) pantheon.switchboard: 2.3.9 -> 2.4.0
* [`016f42b3`](NixOS/nixpkgs@016f42b) pantheon.elementary-icon-theme: 5.2.0 -> 5.3.0
* [`3b4dbf34`](NixOS/nixpkgs@3b4dbf3) pantheon.granite: 5.3.1 -> 5.4.0
* [`c064cd05`](NixOS/nixpkgs@c064cd0) pantheon.wingpanel-applications-menu: 2.6.0 -> 2.7.0
* [`c0c768b6`](NixOS/nixpkgs@c0c768b) pantheon.gala: 3.3.1 -> 3.3.2
* [`044c9a43`](NixOS/nixpkgs@044c9a4) pantheon.appcenter: 3.3.0 -> 3.4.0
* [`3c96a131`](NixOS/nixpkgs@3c96a13) pantheon.elementary-icon-theme: 5.3.0 -> 5.3.1
* [`adacfd02`](NixOS/nixpkgs@adacfd0) pantheon.elementary-calendar: 5.0.4 -> 5.0.5
* [`d71bdb2e`](NixOS/nixpkgs@d71bdb2) pantheon.elementary-files: 4.4.2 -> 4.4.3
* [`adca4a37`](NixOS/nixpkgs@adca4a3) pantheon.sideload: 1.1.0 -> 1.1.1
* [`85146f0f`](NixOS/nixpkgs@85146f0) pantheon.elementary-greeter: 5.0.3 -> 5.0.4
* [`8f24062f`](NixOS/nixpkgs@8f24062) pantheon.pantheon-agent-polkit: 1.0.1 -> 1.0.2
* [`0d8445d0`](NixOS/nixpkgs@0d8445d) pantheon.wingpanel-indicator-network: 2.2.3 -> 2.2.4
* [`4a25ae59`](NixOS/nixpkgs@4a25ae5) pantheon.wingpanel-applications-menu: 2.7.0 -> 2.7.1
* [`ae8c62cb`](NixOS/nixpkgs@ae8c62c) pantheon.elementary-shortcut-overlay: 1.1.1 -> 1.1.2
* [`ac21fd75`](NixOS/nixpkgs@ac21fd7) pantheon.elementary-onboarding: 1.2.0 -> 1.2.1
* [`df72656b`](NixOS/nixpkgs@df72656) pantheon.switchboard-plug-about: 2.6.2 -> 2.6.3
* [`77804794`](NixOS/nixpkgs@7780479) pantheon.switchboard-plug-bluetooth: 2.3.1 -> 2.3.2
* [`34ce3952`](NixOS/nixpkgs@34ce395) pantheon.switchboard-plug-datetime: 2.1.7 -> 2.1.9
* [`d3805ad5`](NixOS/nixpkgs@d3805ad) pantheon.switchboard-plug-display: 2.2.1 -> 2.2.2
* [`489245ed`](NixOS/nixpkgs@489245e) pantheon.switchboard-plug-mouse-touchpad: 2.4.1 -> 2.4.2
* [`68d7569d`](NixOS/nixpkgs@68d7569) pantheon.switchboard-plug-network: 2.3.0 -> 2.3.1
* [`e40d5b5f`](NixOS/nixpkgs@e40d5b5) pantheon.switchboard-plug-notifications: 2.1.6 -> 2.1.7
* [`d8cac264`](NixOS/nixpkgs@d8cac26) pantheon.switchboard-plug-power: 2.4.1 -> 2.4.2
* [`5421f401`](NixOS/nixpkgs@5421f40) pantheon.switchboard-plug-printers: 2.1.8 -> 2.1.9
* [`003af9ca`](NixOS/nixpkgs@003af9c) pantheon.switchboard-plug-security-privacy: 2.2.3 -> 2.2.4
* [`b3a58026`](NixOS/nixpkgs@b3a5802) pantheon.switchboard-plug-sound: 2.2.3 -> 2.2.4
* [`034c9b1e`](NixOS/nixpkgs@034c9b1) pyxdg: fix missing class field Type
* [`bf571328`](NixOS/nixpkgs@bf57132) gcc: Fix MinGW exception handling so Rust works
* [`06e882b0`](NixOS/nixpkgs@06e882b) gcc: Clean up configure flags
* [`b845898c`](NixOS/nixpkgs@b845898) graylog: 3.2.5 -> 3.3.0
* [`974353b2`](NixOS/nixpkgs@974353b) graylogPlugins: Update and add plugins
* [`a83164c2`](NixOS/nixpkgs@a83164c) linux: 4.19.126 -> 4.19.127
* [`a91a07a0`](NixOS/nixpkgs@a91a07a) linux: 5.4.44 -> 5.4.45
* [`f6f6d507`](NixOS/nixpkgs@f6f6d50) linux: 5.6.16 -> 5.6.17
* [`ca6e453f`](NixOS/nixpkgs@ca6e453) coq_8_11: 8.11.1 → 8.11.2
* [`03da8782`](NixOS/nixpkgs@03da878) gnutls: 3.6.13 -> 3.6.14
* [`d68215db`](NixOS/nixpkgs@d68215d) Merge NixOS/nixpkgs#89029: sqlite: 3.30.1 -> 3.32.2 (security)
* [`92d5b1b5`](NixOS/nixpkgs@92d5b1b) hydra-unstable: 2020-04-16 -> 2020-06-01
* [`fc382da4`](NixOS/nixpkgs@fc382da) hostapd: apply patches for CVE-2020-12695
* [`123d8314`](NixOS/nixpkgs@123d831) mumble: 1.3.0 -> 1.3.1 (NixOS/nixpkgs#89988)
* [`1763fe3f`](NixOS/nixpkgs@1763fe3) microcodeIntel: 20200508 → 20200520
* [`57f7f175`](NixOS/nixpkgs@57f7f17) microcodeIntel: 20200520 -> 20200609
* [`159c6a73`](NixOS/nixpkgs@159c6a7) chromiumDev: Fix the configuration phase
* [`48f3b974`](NixOS/nixpkgs@48f3b97) chromiumBeta: Fix the configuration phase
* [`e0c7e1fd`](NixOS/nixpkgs@e0c7e1f) chromium{Beta,Dev}: Fix the builds
* [`118e07c3`](NixOS/nixpkgs@118e07c) slurm: 19.05.5.1 -> 19.05.7.1
* [`8946799e`](NixOS/nixpkgs@8946799) slurm: bugifx, add su/echo paths
* [`3f31c0d2`](NixOS/nixpkgs@3f31c0d) nixos/sympa: fix PATH_INFO splitting for sympa-6.2.56
* [`0094820f`](NixOS/nixpkgs@0094820) hostapd: add hexa as maintainer
* [`3748b5f2`](NixOS/nixpkgs@3748b5f) gitlab: 12.10.9 -> 12.10.11
* [`a8086278`](NixOS/nixpkgs@a808627) linux: 4.14.183 -> 4.14.184
* [`d8a5c622`](NixOS/nixpkgs@d8a5c62) linux: 4.19.127 -> 4.19.128
* [`ff24b8ad`](NixOS/nixpkgs@ff24b8a) linux: 4.4.226 -> 4.4.227
* [`5bcdf900`](NixOS/nixpkgs@5bcdf90) linux: 4.9.226 -> 4.9.227
* [`adeb94a5`](NixOS/nixpkgs@adeb94a) linux: 5.4.45 -> 5.4.46
* [`f09d7434`](NixOS/nixpkgs@f09d743) linux: 5.6.17 -> 5.6.18
* [`e2f9675e`](NixOS/nixpkgs@e2f9675) signal-desktop: 1.34.1 -> 1.34.2
* [`f5e34473`](NixOS/nixpkgs@f5e3447) gitAndTools.gh: add github-cli alias
* [`10ceb8f5`](NixOS/nixpkgs@10ceb8f) gitAndTools.gh: 0.9.0 -> 0.10.0
* [`b6cda510`](NixOS/nixpkgs@b6cda51) poezio: add missing setuptools dependency
* [`db31e48c`](NixOS/nixpkgs@db31e48) python.pkgs.apsw: 3.30.1-r1 -> 3.32.2-r1
* [`807d383c`](NixOS/nixpkgs@807d383) palemoon: 28.9.3 -> 28.10.0
* [`098fdc6b`](NixOS/nixpkgs@098fdc6) treewide: central.maven.org -> repo1.maven.org
* [`f6faec26`](NixOS/nixpkgs@f6faec2) nextcloud: 18.0.4 -> 18.0.6
* [`573b24ee`](NixOS/nixpkgs@573b24e) python2Packages.nixpart0/cryptsetup: patch for glibc >= 2.28
* [`5858bc26`](NixOS/nixpkgs@5858bc2) python2Packages.nixpart0/lvm2: patch for glibc >= 2.28
* [`497b2153`](NixOS/nixpkgs@497b215) python2Packages.nixpart0/multipath_tools: patch for glibc >= 2.28
* [`1ecfb2cc`](NixOS/nixpkgs@1ecfb2c) python2Packages.nixpart0/parted: patch for glibc >= 2.28
* [`4fa1d54d`](NixOS/nixpkgs@4fa1d54) python2Packages.nixpart0/pyblock: patch for glibc >= 2.28
* [`daace8a6`](NixOS/nixpkgs@daace8a) python2Packages.nixpart0/multipath_tools: fixup path to internal libraries
* [`126fb3ae`](NixOS/nixpkgs@126fb3a) bbswitch: fix build with Linux kernel version >= 5.6.0
* [`10e5f1f8`](NixOS/nixpkgs@10e5f1f) intltool: add a backup url for a patch
* [`1594eb93`](NixOS/nixpkgs@1594eb9) postfix: 3.4.9 -> 3.4.10
* [`41268a30`](NixOS/nixpkgs@41268a3) postfix: 3.4.10 -> 3.4.12
* [`4351ace9`](NixOS/nixpkgs@4351ace) postfix: 3.4.12 -> 3.4.13
* [`db0200e5`](NixOS/nixpkgs@db0200e) system-config-printer: Fix ABRT: free(): invalid pointer
* [`ae27952d`](NixOS/nixpkgs@ae27952) pycurl: Exclude another flaky test. Fixes NixOS/nixpkgs#77304
* [`a84b797b`](NixOS/nixpkgs@a84b797) pycurl: Exclude flaky multi_timer_test. Fixes NixOS/nixpkgs#77304
* [`b0bfe9b5`](NixOS/nixpkgs@b0bfe9b) chromium: Build with VA-API but disable it by default
* [`0d8250ae`](NixOS/nixpkgs@0d8250a) chromium: 83.0.4103.97 -> 83.0.4103.106
* [`70ecf772`](NixOS/nixpkgs@70ecf77) graylog: 3.3.0 -> 3.3.1
* [`60da5edb`](NixOS/nixpkgs@60da5ed) graylogPlugins: Update plugins
* [`02b95cf5`](NixOS/nixpkgs@02b95cf) strace-graph: fix strace-graph shebang which points to perl
* [`dce9ef51`](NixOS/nixpkgs@dce9ef5) youtube-dl: 2020.06.06 -> 2020.06.16.1
* [`c27866c8`](NixOS/nixpkgs@c27866c) microcodeIntel: 20200609 -> 20200616
* [`724d123a`](NixOS/nixpkgs@724d123) riot-web: 1.6.4 -> 1.6.5
* [`8ab112eb`](NixOS/nixpkgs@8ab112e) riot-desktop: 1.6.4 -> 1.6.5
* [`b2a6d2fa`](NixOS/nixpkgs@b2a6d2f) linuxPackages.wireguard: 1.0.20200520 -> 1.0.20200611
* [`243f698a`](NixOS/nixpkgs@243f698) vagrant: 2.2.8 -> 2.2.9
* [`c5fd298d`](NixOS/nixpkgs@c5fd298) vlc: 3.0.8 -> 3.0.11 (security)
* [`bb4fd7eb`](NixOS/nixpkgs@bb4fd7e) haskellPackages.geojson: Unmark as broken
* [`583ccf8c`](NixOS/nixpkgs@583ccf8) Don't enable nix-bash-completions when using Nix 2.4
* [`80b50f32`](NixOS/nixpkgs@80b50f3) fwupd: add patch for CVE-2020-10759
* [`725c4fdb`](NixOS/nixpkgs@725c4fd) google-chrome: add coreutils to PATH
* [`9e379117`](NixOS/nixpkgs@9e37911) xdg_utils: xdg-open: add $out to PATH
* [`73d7516c`](NixOS/nixpkgs@73d7516) matrix-synapse: 1.14.0 -> 1.15.1
* [`f70a5992`](NixOS/nixpkgs@f70a599) nixos/gnome3: nixos-artwork -> pkgs.nixos-artwork
* [`87cde1cf`](NixOS/nixpkgs@87cde1c) pantheon.elementary-code: 3.4.0 -> 3.4.1
* [`30c703cb`](NixOS/nixpkgs@30c703c) nixos/sudo: default rule should be first
* [`5e1de952`](NixOS/nixpkgs@5e1de95) json_c: add patch for CVE-2020-12762
* [`6cd67ec4`](NixOS/nixpkgs@6cd67ec) go: stop setting GOPATH
* [`296e584a`](NixOS/nixpkgs@296e584) go_1_13: stop setting GOPATH
* [`c9965e2d`](NixOS/nixpkgs@c9965e2) go_1_12: stop setting GOPATH
* [`382b2dba`](NixOS/nixpkgs@382b2db) go: 1.14.1 -> 1.14.2
* [`2a1c67cb`](NixOS/nixpkgs@2a1c67c) go: 1.14.2 -> 1.14.3
* [`203fcbad`](NixOS/nixpkgs@203fcba) go_1_13: 1.13.8 -> 1.13.11
* [`b1cbd087`](NixOS/nixpkgs@b1cbd08) go_1_13: 1.13.11 -> 1.13.12
* [`16a461d1`](NixOS/nixpkgs@16a461d) go: 1.14.3 -> 1.14.4
* [`4094b363`](NixOS/nixpkgs@4094b36) go: fix TestDontCacheBrokenHTTP2Conn failure
* [`9ae22e34`](NixOS/nixpkgs@9ae22e3) buildGoModule: passthru the modSha256 (NixOS/nixpkgs#82027)
* [`470d5558`](NixOS/nixpkgs@470d555) go-modules: Augment builds w/ vendor src
* [`124d70cc`](NixOS/nixpkgs@124d70c) go-modules: Add in old modsha256 w/ warning
* [`e3ca027f`](NixOS/nixpkgs@e3ca027) libexif: 0.6.21 -> 0.6.22
* [`4e48231c`](NixOS/nixpkgs@4e48231) luajit*: patch CVE-2019-19391
* [`0ba08838`](NixOS/nixpkgs@0ba0883) libjpeg(-turbo): patch CVE-2020-13790
* [`788764b1`](NixOS/nixpkgs@788764b) transmission: patch CVE-2018-10756
* [`2b417708`](NixOS/nixpkgs@2b41770) Remove Google Talk Plugin
* [`fd8bbb8b`](NixOS/nixpkgs@fd8bbb8) mutt: patch for CVE-2020-14093
* [`0a29dda8`](NixOS/nixpkgs@0a29dda) monero: 0.15.0.1 -> 0.16.0.0
* [`7587e079`](NixOS/nixpkgs@7587e07) monero-gui: 0.15.0.4 -> 0.16.0.0
* [`199de046`](NixOS/nixpkgs@199de04) mwprocapture: 1.2.4054 -> 1.2.4177
* [`48a6a8b9`](NixOS/nixpkgs@48a6a8b) sv-kalendar: fix meta
* [`8b38149d`](NixOS/nixpkgs@8b38149) jhead: 3.03 -> 3.04
* [`2a0c1294`](NixOS/nixpkgs@2a0c129) neomutt: Make it not reference .dev outputs.
* [`5ca29c7a`](NixOS/nixpkgs@5ca29c7) neomutt: make manual.txt not empty
* [`657aa0bf`](NixOS/nixpkgs@657aa0b) neomutt: Remove old fixes for failing tests
* [`c9ad4681`](NixOS/nixpkgs@c9ad468) neomutt: 20200501 -> 20200619
* [`694939b0`](NixOS/nixpkgs@694939b) flashplayer: 32.0.0.363 -> 32.0.0.371
* [`a4a203e9`](NixOS/nixpkgs@a4a203e) flashplayer: 32.0.0.371 -> 32.0.0.387
* [`cdd1ecea`](NixOS/nixpkgs@cdd1ece) nextcloud19: init at 19.0.0
* [`6a99d5d6`](NixOS/nixpkgs@6a99d5d) nixos/nextcloud: add occ internal option
* [`210d7a17`](NixOS/nixpkgs@210d7a1) lepton: 1.2.1 → 2019-08-20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment