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

Declare several versions of OCamlformat #88799

Merged
merged 5 commits into from Sep 22, 2020
Merged

Conversation

Julow
Copy link
Contributor

@Julow Julow commented May 24, 2020

Motivation for this change

OCamlformat is still a bit unstable and it's common to work on several
projects that each use a different version.

Things done

An attribute is added for each version, ocamlformat is set to the lastest
version (as before). I didn't add older than 0.11.0 because they were never
added to nixpkgs, except for 0.8 which is too old.

The second commit is unrelated and adds a missing dependency on base. I think this may help
debugging build failures when upgrading dependencies in the future.

The script I used to check that they all build:

exec 2>/dev/null
nix-shell -I nixpkgs=./. -p ocamlformat_0_11_0 --run 'ocamlformat --version'
nix-shell -I nixpkgs=./. -p ocamlformat_0_12 --run 'ocamlformat --version'
nix-shell -I nixpkgs=./. -p ocamlformat_0_13_0 --run 'ocamlformat --version'
nix-shell -I nixpkgs=./. -p ocamlformat_0_14_0 --run 'ocamlformat --version'
nix-shell -I nixpkgs=./. -p ocamlformat_0_14_1 --run 'ocamlformat --version'
nix-shell -I nixpkgs=./. -p ocamlformat_0_14_2 --run 'ocamlformat --version'
  • Tested using sandboxing (nix.useSandbox on NixOS, or option sandbox in nix.conf on non-NixOS linux)
  • Built on platform(s)
    • NixOS
    • macOS
    • other Linux distributions
  • Tested via one or more NixOS test(s) if existing and applicable for the change (look inside nixos/tests)
  • Tested compilation of all pkgs that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review wip"
  • Tested execution of all binary files (usually in ./result/bin/)
  • Determined the impact on package closure size (by running nix path-info -S before and after)
  • Ensured that relevant documentation is up to date
  • Fits CONTRIBUTING.md.

Copy link
Member

@Zimmi48 Zimmi48 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree with the motivation for this change, but please do not create such duplication. Instead, you should take a version number as argument and load the right source location depending on this. In the current setup, it is impossible to see quickly the differences between the derivations beyond the source location. It is also impossible to properly track the history of a package and it creates a higher risk of introducing inconsistencies (e.g. by fixing the latest version only). In other words, let's not take example on the mess that opam repositories are.

As an example, you can look at what the Coq derivation does: https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/science/logic/coq/default.nix

@@ -9078,7 +9078,13 @@ in

ocaml-crunch = ocamlPackages.crunch.bin;

ocamlformat = callPackage ../development/tools/ocaml/ocamlformat { };
ocamlformat_0_11_0 = callPackage ../development/tools/ocaml/ocamlformat/0.11.0.nix { };
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we really need all these versions though and when do get old versions removed again?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cc @vbgl

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have a script that is scraping OCamlformat configs on Github: https://gist.github.com/Julow/110dc94308d6078225e0665e3eccd433

Here are the most used versions as of now (the script may miss some projects and a lot of project don't declare the version they use):

  28 version = 0.14.1
  26 version = 0.13.0
  21 version = 0.12
  16 version = 0.11.0
  12 version = 0.14.2
   7 version = 0.9
   5 version = 0.14.0

0.11.0 is still used by a lot of projects but it is reasonable to remove it if less is better.

@Julow
Copy link
Contributor Author

Julow commented May 25, 2020

I moved every definitions into a single file, sharing as much code as possible.
The lastest version should be identical after this change (didn't require a rebuild).

@ofborg ofborg bot requested a review from Zimmi48 May 25, 2020 19:54
Copy link
Member

@Zimmi48 Zimmi48 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

pkgs/top-level/all-packages.nix Outdated Show resolved Hide resolved
rec {
ocamlformat_0_11_0 = mkOCamlformat {
version = "0.11.0";
url = "https://github.com/ocaml-ppx/ocamlformat/archive/0.11.0.tar.gz";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This URL is not good for fetchurl (the archive is dynamically generated and its hash may change).

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are fetchzip et al. more robust because the hash is checked after unpacking?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Precisely. fetchzip computes the hash of the contents after unpacking.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks ! I changed to fetchzip.
The added complexity (recursive argument set, unclear sha256 argument) should go away when 0.11.0 is removed.

inherit (callPackage ../development/tools/ocaml/ocamlformat { })
ocamlformat # lastest version
ocamlformat_0_11_0 ocamlformat_0_12 ocamlformat_0_13_0 ocamlformat_0_14_0
ocamlformat_0_14_1 ocamlformat_0_14_2;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we really need all these top-level attributes?

IMHO, using the override mechanism would be less ad-hoc.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The issue with override is that it is not just about the version number and the hash, but also the dependencies, the use of Dune 1 or 2. So using override would be just more work for everybody (to find again about this).

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It’s fine to embed all the knowledge in nixpkgs. I’m just talking about the interface.

ocamlformat.override { version = "0.12"; } vs ocamlformat_0_12.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK, thanks for clarifying. There's one last drawback in using the override method which is the reduced discoverability. Given that ocamlformat is always supposed to be pinned, the attributes do make sense to me. But I'm fine with any solution.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder if override would also make the implementation more complicated. The version is not a simple attribute, src, buildInputs and possibly others need to change with each version.
Also, would that prevent older version from being cached ?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably not a lot more complex: you would have a switch based on a version name to choose the value of the other parameters.

Also, would that prevent older version from being cached ?

In the main NixOS binary cache, yes.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OCamlformat being a tool, I think the cache is important because build dependencies are huge and output is small.
Are there other conventions to expose several versions of a package ?

Copy link
Member

@Mic92 Mic92 May 29, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would say the convention you choose is the most common one. I don't have objections against it.

@ofborg ofborg bot requested a review from Zimmi48 May 26, 2020 22:18
@Julow
Copy link
Contributor Author

Julow commented Sep 17, 2020

This issue seems to have stalled. Is it a problem that this PR adds many attributes in all-packages ?
If yes, I'd be happy to work on it.

@Zimmi48
Copy link
Member

Zimmi48 commented Sep 17, 2020

I don't think that anyone has any strong opposition to the current state. @vbgl should confirm but I guess that if you rebase your PR, he will merge it and it was an oversight not to have done it earlier.

Declare several versions of OCamlformat.

OCamlformat is still a bit unstable and it's common to work on several
projects that each use a different version.

Define every versions at once and share code
OCamlformat always required Base.
This will be important in the future as Base may make breaking changes.
@Julow
Copy link
Contributor Author

Julow commented Sep 18, 2020

I just rebased, which added ocamlformat 0.15.0.

@ofborg ofborg bot requested a review from marsam September 18, 2020 22:08
@vbgl vbgl merged commit c4cb4c2 into NixOS:master Sep 22, 2020
github-actions bot added a commit to pbogdan/shell-cmd that referenced this pull request Sep 27, 2020
## Motivation

Dependencies should be up to date.

## Changelog for unstable:
Commits: [NixOS/nixpkgs@1179840f...daaa0e33](NixOS/nixpkgs@1179840...daaa0e3)

* [`0e6477d6`](NixOS/nixpkgs@0e6477d) vscodium: 1.48.2 -> 1.49.1
* [`7ea5b08c`](NixOS/nixpkgs@7ea5b08) gnat: fix build
* [`e3796bc8`](NixOS/nixpkgs@e3796bc) shadowsocks-rust: 1.8.17 -> 1.8.18
* [`670fe111`](NixOS/nixpkgs@670fe11) celluloid: 0.19 -> 0.20
* [`d61c16cd`](NixOS/nixpkgs@d61c16c) sslyze: fix build
* [`f8473b1d`](NixOS/nixpkgs@f8473b1) openssh_hpn: fix source
* [`e11a4875`](NixOS/nixpkgs@e11a487) josm: use latest jdk
* [`aabe6e23`](NixOS/nixpkgs@aabe6e2) dbeaver: use latest jdk
* [`8ba71cef`](NixOS/nixpkgs@8ba71ce) mediathekview: use latest jre
* [`eb61d33a`](NixOS/nixpkgs@eb61d33) maintainers: remove joncojonathan
* [`328fa738`](NixOS/nixpkgs@328fa73) deja-dup: remove joncojonathan as maintainer
* [`01fed034`](NixOS/nixpkgs@01fed03) closurecompiler: use latest jdk
* [`9481828b`](NixOS/nixpkgs@9481828) emscripten: use latest jdk
* [`ff078a7e`](NixOS/nixpkgs@ff078a7) keepass: remove joncojonathan as maintainer
* [`84a0da26`](NixOS/nixpkgs@84a0da2) runelite: use latest jdk
* [`609e3aa5`](NixOS/nixpkgs@609e3aa) gramps: remove joncojonathan as maintainer
* [`5e46e2a7`](NixOS/nixpkgs@5e46e2a) awstats: use latest jdk
* [`3426068a`](NixOS/nixpkgs@3426068) arduino: use latest jdk
* [`effd6aa5`](NixOS/nixpkgs@effd6aa) gpsprune: use latest jdk
* [`ef4cbbab`](NixOS/nixpkgs@ef4cbba) clojure: use latest jdk
* [`e13e02f3`](NixOS/nixpkgs@e13e02f) jedit: use latest jdk
* [`907fd8d6`](NixOS/nixpkgs@907fd8d) youtube-dl: 2020.09.14 -> 2020.09.20
* [`80a6743c`](NixOS/nixpkgs@80a6743) opencascade: enable macOS build and add features
* [`e5869f99`](NixOS/nixpkgs@e5869f9) gitAndTools.git-imerge: 1.1.0 -> 1.2.0
* [`4fc8c509`](NixOS/nixpkgs@4fc8c50) platforms: add bigEndian and littleEndian
* [`40722346`](NixOS/nixpkgs@4072234) avy: 2017.10.16 -> 2019.05.01
* [`2f934a96`](NixOS/nixpkgs@2f934a9) qcad: fix library browser
* [`0b3ffb51`](NixOS/nixpkgs@0b3ffb5) cawbird: 1.1.0 -> 1.2.1
* [`05f99442`](NixOS/nixpkgs@05f9944) pythonPackages.glom: fix tests
* [`b103ddb9`](NixOS/nixpkgs@b103ddb) pythonPackages.mock-open: 1.3.1 -> 1.3.2
* [`355d255d`](NixOS/nixpkgs@355d255) pythonPackages.mock-open: 1.3.2 -> 1.4.0
* [`a28068a9`](NixOS/nixpkgs@a28068a) svgbob: fix build
* [`a4261572`](NixOS/nixpkgs@a426157) qcad: replace qt argument
* [`d07100d8`](NixOS/nixpkgs@d07100d) python3Packages.crate: init at 0.24.0
* [`b3178aee`](NixOS/nixpkgs@b3178ae) python.pkgs.agate-sql: fix tests by adding crate to inputs
* [`eb9393a4`](NixOS/nixpkgs@eb9393a) csvkit: 1.0.4 -> 1.0.5
* [`8bf99f67`](NixOS/nixpkgs@8bf99f6) csvkit: fix tests
* [`172f3a19`](NixOS/nixpkgs@172f3a1) lldb_5, lldb_6: add patch for >=python-3.7
* [`09bc8c8d`](NixOS/nixpkgs@09bc8c8) can-isotp: 20180629 -> 20200910
* [`044533c9`](NixOS/nixpkgs@044533c) libndtypes, pythonPackages.ndtypes: unstable-2018-11-27 -> unstable-2019-08-01
* [`dcd6847d`](NixOS/nixpkgs@dcd6847) libxnd, pythonPackages.xnd: unstable-2018-11-27 -> unstable-2019-08-01
* [`eb86bff3`](NixOS/nixpkgs@eb86bff) libgumath, pythonPackages.gumath: unstable-2018-11-27 -> unstable-2019-08-01
* [`43c0499f`](NixOS/nixpkgs@43c0499) python38Packages.shouldbe: disable for python3.8
* [`96e44389`](NixOS/nixpkgs@96e4438) contributing.md: mention rebased or squashed merges
* [`4d4516a0`](NixOS/nixpkgs@4d4516a) gnome-network-displays: init at 0.90.4
* [`9a4468b9`](NixOS/nixpkgs@9a4468b) linux: 5.9-rc4 -> 5.9-rc5
* [`4e435eee`](NixOS/nixpkgs@4e435ee) pythonPackages.cfn-lint: 0.35.0 -> 0.35.1
* [`358cfe91`](NixOS/nixpkgs@358cfe9) gitAndTools.git-machete: 2.15.5 -> 2.15.6
* [`edd8fb37`](NixOS/nixpkgs@edd8fb3) sunvox: fix hash mismatch
* [`fa1272e9`](NixOS/nixpkgs@fa1272e) emacsPackages.libgit: Fix build
* [`8bb5c62a`](NixOS/nixpkgs@8bb5c62) gallery-dl: 1.14.5 -> 1.15.0
* [`56660562`](NixOS/nixpkgs@5666056) vmmlib: fix build
* [`215cfc98`](NixOS/nixpkgs@215cfc9) .editorconfig: add timidity.cfg
* [`c3244181`](NixOS/nixpkgs@c324418) pythonPackages.netaddr: 0.7.19 -> 0.8.0
* [`b8f130e2`](NixOS/nixpkgs@b8f130e) python.pkgs.scikit-optimize: 0.6 -> 0.8.1
* [`4482e5ec`](NixOS/nixpkgs@4482e5e) dotnetenv: editorconfig fixes
* [`d8b5fb33`](NixOS/nixpkgs@d8b5fb3) oh-my-zsh: 2020-09-14 -> 2020-09-20
* [`6543cbf5`](NixOS/nixpkgs@6543cbf) python3Packages.parse: 1.16.0 -> 1.18.0
* [`f690cacb`](NixOS/nixpkgs@f690cac) python3Packages.python-docx: run behave tests
* [`0f34c4eb`](NixOS/nixpkgs@0f34c4e) python3Packages.behave: skip test failing on darwin
* [`781b870c`](NixOS/nixpkgs@781b870) xmlbird: fix build with python 3.8
* [`0b67d9e8`](NixOS/nixpkgs@0b67d9e) birdfont: fix build on non-nixos/debian systems
* [`06975755`](NixOS/nixpkgs@0697575) doc/python: remove trailing whitespace
* [`74c2ed9e`](NixOS/nixpkgs@74c2ed9) nixos/tools/nixos-install: remove trailing whitespace
* [`a4edf4ca`](NixOS/nixpkgs@a4edf4c) perlPackages.HamAPRSFAP: init at 1.21
* [`bf71f459`](NixOS/nixpkgs@bf71f45) liboping: fix build on Darwin
* [`31e54cdd`](NixOS/nixpkgs@31e54cd) firefox: enable pipewire+webrtc for wayland users
* [`efa99abf`](NixOS/nixpkgs@efa99ab) singularity: 3.6.2 -> 3.6.3
* [`85ce3805`](NixOS/nixpkgs@85ce380) terraform-compliance: fix build
* [`c743f4e1`](NixOS/nixpkgs@c743f4e) mruby: 2.1.1 -> 2.1.2
* [`dbdd5d41`](NixOS/nixpkgs@dbdd5d4) maintainer: Add bryanasdev000
* [`8465b484`](NixOS/nixpkgs@8465b48) popeye: init at 0.8.10
* [`142f6d85`](NixOS/nixpkgs@142f6d8) velero: init at 1.5.1
* [`617d5b7f`](NixOS/nixpkgs@617d5b7) velero: remove old heptio-ark package
* [`a4afd525`](NixOS/nixpkgs@a4afd52) prometheus: Unbreak IPv6 listenAddress
* [`4e155d6b`](NixOS/nixpkgs@4e155d6) fontmatrix: 0.6.0 → 0.6.0-qt5 (NixOS/nixpkgs#97800)
* [`c06b0edd`](NixOS/nixpkgs@c06b0ed) ocamlPackages.apron: 0.9.12 → 0.9.13
* [`0996ac6b`](NixOS/nixpkgs@0996ac6) nvtop: Make independent of Nvidia driver version
* [`9ff87334`](NixOS/nixpkgs@9ff8733) maintainers: add charvp
* [`090cc5d6`](NixOS/nixpkgs@090cc5d) bluej: init at 4.2.2
* [`5d365404`](NixOS/nixpkgs@5d36540) beets: add extrafiles plugin
* [`0bbeca2f`](NixOS/nixpkgs@0bbeca2) ocamlPackages.zarith: 1.9 -> 1.10
* [`cc2982b7`](NixOS/nixpkgs@cc2982b) untrunc: update to latest git version
* [`f5a61c26`](NixOS/nixpkgs@f5a61c2) lizardfs: fix build
* [`70b417f5`](NixOS/nixpkgs@70b417f) dconf2nix: 0.0.5 -> 0.0.6
* [`846acc4c`](NixOS/nixpkgs@846acc4) slack: 4.8.0 -> 4.9.1
* [`f000c741`](NixOS/nixpkgs@f000c74) pythonPackages.b2sdk: init at 1.1.4
* [`3c03a982`](NixOS/nixpkgs@3c03a98) duplicity: use new b2sdk python package
* [`7bd19e7a`](NixOS/nixpkgs@7bd19e7) nix-prefetch: fix compatibility with nixUnstable again
* [`731fd9ef`](NixOS/nixpkgs@731fd9e) androidStudioPackages.{dev,canary}: 4.2.0.10 -> 4.2.0.11
* [`5f19b74d`](NixOS/nixpkgs@5f19b74) f3: clean-ups and compile on darwin (NixOS/nixpkgs#98365)
* [`d4eed013`](NixOS/nixpkgs@d4eed01) gitlab-runner: 13.3.1 -> 13.4.0 (NixOS/nixpkgs#98377)
* [`ac49c2f7`](NixOS/nixpkgs@ac49c2f) freeoffice: 976 -> 978
* [`114202e3`](NixOS/nixpkgs@114202e) thunderbird-78: fix NixOS/nixpkgs#97994: broken UI in 78.2.2
* [`d33267c6`](NixOS/nixpkgs@d33267c) thunderbird.meta.maintainers: add myself
* [`517c9755`](NixOS/nixpkgs@517c975) Sylk: 3.8.0 -> 3.8.4 (NixOS/nixpkgs#98392)
* [`8be7347e`](NixOS/nixpkgs@8be7347) pythonPackages.mohawk: init at 1.1.0
* [`a2228f4c`](NixOS/nixpkgs@a2228f4) libversion: fix tests on Darwin (NixOS/nixpkgs#98361)
* [`3b6800c7`](NixOS/nixpkgs@3b6800c) python3Packages.spyder: fix build
* [`9dc65423`](NixOS/nixpkgs@9dc6542) pythonPackages.spyder-kernels: 1.9.3 -> 1.9.4
* [`6e4908a5`](NixOS/nixpkgs@6e4908a) spyder: 4.1.4 -> 4.1.5
* [`8403806a`](NixOS/nixpkgs@8403806) python3Packages.rising: init at 0.2.0post0
* [`4f03644c`](NixOS/nixpkgs@4f03644) spotify: support --force-device-scale-factor
* [`0e0dc554`](NixOS/nixpkgs@0e0dc55) rust-analyzer: 2020-08-24 -> 2020-09-21
* [`21a6f3aa`](NixOS/nixpkgs@21a6f3a) rust-analyzer: fix build
* [`d45ea33a`](NixOS/nixpkgs@d45ea33) pythonPackages.pecan: 1.3.3 -> 1.4.0
* [`143289ad`](NixOS/nixpkgs@143289a) pythonPackages.WSME: fix build
* [`e883c657`](NixOS/nixpkgs@e883c65) softmaker-office: remove /bin/ls intercept
* [`860bc40a`](NixOS/nixpkgs@860bc40) sundials: add KLU support
* [`4e888fb7`](NixOS/nixpkgs@4e888fb) python2Packages.scikits-odes: disable
* [`85c07678`](NixOS/nixpkgs@85c0767) isso: build from master
* [`cd1b7693`](NixOS/nixpkgs@cd1b769) pythonPackages.xlib: 0.25 -> 0.28
* [`b0edb341`](NixOS/nixpkgs@b0edb34) buildbot: 2.8.2 -> 2.8.4
* [`e2283652`](NixOS/nixpkgs@e228365) pythonPackages.yq: repackage as library, convert to application, fix tests
* [`1a44ef90`](NixOS/nixpkgs@1a44ef9) pythonPackages.yq: 2.10.1 -> 2.11.0
* [`40a58cc6`](NixOS/nixpkgs@40a58cc) python3.pkgs.yq: make stdin a tty for tests
* [`4990bd11`](NixOS/nixpkgs@4990bd1) Dino: Enable on macOS/Darwin
* [`f4cc8c18`](NixOS/nixpkgs@f4cc8c1) clightning: 0.9.0-1 -> 0.9.1
* [`243f56fb`](NixOS/nixpkgs@243f56f) python3.pkgs.bokeh: 2.1.1 -> 2.2.1
* [`4e1f8e4e`](NixOS/nixpkgs@4e1f8e4) python3Packages.xarray: 0.16.0 -> 0.16.1
* [`5a71d961`](NixOS/nixpkgs@5a71d96) firecracker: 0.21.1 -> 0.22.0
* [`647be9d0`](NixOS/nixpkgs@647be9d) age: 1.0.0-beta4 -> 1.0.0-beta5
* [`b06070c2`](NixOS/nixpkgs@b06070c) weather: enable on darwin
* [`43350332`](NixOS/nixpkgs@4335033) Update pkgs/applications/networking/instant-messengers/dino/default.nix
* [`b950a85b`](NixOS/nixpkgs@b950a85) luakit: 2.1 -> 2.2
* [`b531e659`](NixOS/nixpkgs@b531e65) fd: remove unnecessary reference to $src
* [`1d8fae0b`](NixOS/nixpkgs@1d8fae0) mpv: install mpv_identify.sh
* [`1399f780`](NixOS/nixpkgs@1399f78) ripgrep: remove unnecessary reference to $src
* [`a3323d49`](NixOS/nixpkgs@a3323d4) comic-neue: 2.3 -> 2.5
* [`4c4217bd`](NixOS/nixpkgs@4c4217b) cimg: 2.9.1 -> 2.9.2
* [`271b9ac9`](NixOS/nixpkgs@271b9ac) weather: reformat derivation
* [`c4cb4c22`](NixOS/nixpkgs@c4cb4c2) Declare several versions of OCamlformat (NixOS/nixpkgs#88799)
* [`47997634`](NixOS/nixpkgs@4799763) duf: init at 0.1.0 (NixOS/nixpkgs#98396)
* [`534ad685`](NixOS/nixpkgs@534ad68) viu: 1.0 -> 1.1
* [`a762bbf7`](NixOS/nixpkgs@a762bbf) pythonPackages.http-parser: init at 0.9.0
* [`b3ca5036`](NixOS/nixpkgs@b3ca503) pythonPackages.mocket: 3.8.9 -> 3.9.0
* [`9fde97d8`](NixOS/nixpkgs@9fde97d) python3Packages.pyxnat: init at 1.3
* [`03ea51a8`](NixOS/nixpkgs@03ea51a) python3Packages.dipy: 1.1.1 -> 1.2.0
* [`a4c2512d`](NixOS/nixpkgs@a4c2512) vimPlugins.hoon-vim: init at 2020-02-19
* [`943fa12e`](NixOS/nixpkgs@943fa12) hop: fix build
* [`06098c76`](NixOS/nixpkgs@06098c7) bigloo: 4.1a-2 → 4.3h; hop: 2.5.1 → 3.3.0
* [`f29f67bd`](NixOS/nixpkgs@f29f67b) Removing myself from maintainers list of blockchains
* [`ec92ffc5`](NixOS/nixpkgs@ec92ffc) orocos-kdl: init at 1.4.0
* [`83162ab3`](NixOS/nixpkgs@83162ab) pythonPackages.pykdl: init at 1.4.0
* [`23370afc`](NixOS/nixpkgs@23370af) curlie: 1.3.1 -> 1.5.4
* [`d1a27a5f`](NixOS/nixpkgs@d1a27a5) chromium: 85.0.4183.102 -> 85.0.4183.121
* [`e2926577`](NixOS/nixpkgs@e292657) perl-cross: fix . being included in INC
* [`bd4805b6`](NixOS/nixpkgs@bd4805b) pythonPackages.django: 2.2.15 -> 2.2.16
* [`11c36334`](NixOS/nixpkgs@11c3633) vscode-extensions.vadimcn.vscode-lldb: init at 1.5.3
* [`bc2e4628`](NixOS/nixpkgs@bc2e462) maestral-gui: Fix Qt by using libsForQt5
* [`8463f5c9`](NixOS/nixpkgs@8463f5c) pythonPackages.dropbox: 10.3.1 -> 10.4.1
* [`08ab7f91`](NixOS/nixpkgs@08ab7f9) pythonPackages.dbus-next: init at 0.1.4
* [`b3e1fd55`](NixOS/nixpkgs@b3e1fd5) pythonPackages.maestral: 1.1.0 -> 1.2.0
* [`6dad7ddb`](NixOS/nixpkgs@6dad7dd) maestral-qt: 1.1.0 -> 1.2.0
* [`5f31ac17`](NixOS/nixpkgs@5f31ac1) ubidump: init at unstable-2019-09-11
* [`a775c939`](NixOS/nixpkgs@a775c93) ocamlPackages.zed: 2.0.3 → 3.1.0
* [`2904bef2`](NixOS/nixpkgs@2904bef) python3Packages.csvw: init at 1.8.0
* [`8fca119c`](NixOS/nixpkgs@8fca119) python3Packages.clldutils: init at 3.5.2
* [`0f509906`](NixOS/nixpkgs@0f50990) python3Packages.segments: init at 2.1.3
* [`53c78da3`](NixOS/nixpkgs@53c78da) weather: cleanups
* [`e05feccc`](NixOS/nixpkgs@e05fecc) weather: enable on all Unix platforms
* [`7abb57c7`](NixOS/nixpkgs@7abb57c) fix passing qt5 version to pythonInterpreters
* [`68561ccf`](NixOS/nixpkgs@68561cc) obs-v4l2sink: update to latest git 'master' version
* [`a1f8e0b4`](NixOS/nixpkgs@a1f8e0b) coqPackages.metalib: 20170713 → 20200527
* [`7c411b66`](NixOS/nixpkgs@7c411b6) linux-rt_5_4: 5.4.61-rt37 -> 5.4.66-rt38
* [`4d9e2972`](NixOS/nixpkgs@4d9e297) zoom-us: 5.2.458699.0906 -> 5.3.465578.0920
* [`382f7ce9`](NixOS/nixpkgs@382f7ce) buildah: 1.16.1 -> 1.16.2
* [`5c27f0dd`](NixOS/nixpkgs@5c27f0d) podman: 2.0.6 -> 2.1.0
* [`2e30e228`](NixOS/nixpkgs@2e30e22) bettercap: build on darwin
* [`ff64cb72`](NixOS/nixpkgs@ff64cb7) amass: 3.10.1 -> 3.10.3
* [`36ad05e8`](NixOS/nixpkgs@36ad05e) vscode-extensions.haskell.haskell: init at 1.1.0 (NixOS/nixpkgs#98251)
* [`fccf069e`](NixOS/nixpkgs@fccf069) python3Packages.transformers: 3.1.0 -> 3.2.0
github-actions bot added a commit to pbogdan/tag that referenced this pull request Sep 27, 2020
## Motivation

Dependencies should be up to date.

## Changelog for unstable:
Commits: [NixOS/nixpkgs@1179840f...daaa0e33](NixOS/nixpkgs@1179840...daaa0e3)

* [`0e6477d6`](NixOS/nixpkgs@0e6477d) vscodium: 1.48.2 -> 1.49.1
* [`7ea5b08c`](NixOS/nixpkgs@7ea5b08) gnat: fix build
* [`e3796bc8`](NixOS/nixpkgs@e3796bc) shadowsocks-rust: 1.8.17 -> 1.8.18
* [`670fe111`](NixOS/nixpkgs@670fe11) celluloid: 0.19 -> 0.20
* [`d61c16cd`](NixOS/nixpkgs@d61c16c) sslyze: fix build
* [`f8473b1d`](NixOS/nixpkgs@f8473b1) openssh_hpn: fix source
* [`e11a4875`](NixOS/nixpkgs@e11a487) josm: use latest jdk
* [`aabe6e23`](NixOS/nixpkgs@aabe6e2) dbeaver: use latest jdk
* [`8ba71cef`](NixOS/nixpkgs@8ba71ce) mediathekview: use latest jre
* [`eb61d33a`](NixOS/nixpkgs@eb61d33) maintainers: remove joncojonathan
* [`328fa738`](NixOS/nixpkgs@328fa73) deja-dup: remove joncojonathan as maintainer
* [`01fed034`](NixOS/nixpkgs@01fed03) closurecompiler: use latest jdk
* [`9481828b`](NixOS/nixpkgs@9481828) emscripten: use latest jdk
* [`ff078a7e`](NixOS/nixpkgs@ff078a7) keepass: remove joncojonathan as maintainer
* [`84a0da26`](NixOS/nixpkgs@84a0da2) runelite: use latest jdk
* [`609e3aa5`](NixOS/nixpkgs@609e3aa) gramps: remove joncojonathan as maintainer
* [`5e46e2a7`](NixOS/nixpkgs@5e46e2a) awstats: use latest jdk
* [`3426068a`](NixOS/nixpkgs@3426068) arduino: use latest jdk
* [`effd6aa5`](NixOS/nixpkgs@effd6aa) gpsprune: use latest jdk
* [`ef4cbbab`](NixOS/nixpkgs@ef4cbba) clojure: use latest jdk
* [`e13e02f3`](NixOS/nixpkgs@e13e02f) jedit: use latest jdk
* [`907fd8d6`](NixOS/nixpkgs@907fd8d) youtube-dl: 2020.09.14 -> 2020.09.20
* [`80a6743c`](NixOS/nixpkgs@80a6743) opencascade: enable macOS build and add features
* [`e5869f99`](NixOS/nixpkgs@e5869f9) gitAndTools.git-imerge: 1.1.0 -> 1.2.0
* [`4fc8c509`](NixOS/nixpkgs@4fc8c50) platforms: add bigEndian and littleEndian
* [`40722346`](NixOS/nixpkgs@4072234) avy: 2017.10.16 -> 2019.05.01
* [`2f934a96`](NixOS/nixpkgs@2f934a9) qcad: fix library browser
* [`0b3ffb51`](NixOS/nixpkgs@0b3ffb5) cawbird: 1.1.0 -> 1.2.1
* [`05f99442`](NixOS/nixpkgs@05f9944) pythonPackages.glom: fix tests
* [`b103ddb9`](NixOS/nixpkgs@b103ddb) pythonPackages.mock-open: 1.3.1 -> 1.3.2
* [`355d255d`](NixOS/nixpkgs@355d255) pythonPackages.mock-open: 1.3.2 -> 1.4.0
* [`a28068a9`](NixOS/nixpkgs@a28068a) svgbob: fix build
* [`a4261572`](NixOS/nixpkgs@a426157) qcad: replace qt argument
* [`d07100d8`](NixOS/nixpkgs@d07100d) python3Packages.crate: init at 0.24.0
* [`b3178aee`](NixOS/nixpkgs@b3178ae) python.pkgs.agate-sql: fix tests by adding crate to inputs
* [`eb9393a4`](NixOS/nixpkgs@eb9393a) csvkit: 1.0.4 -> 1.0.5
* [`8bf99f67`](NixOS/nixpkgs@8bf99f6) csvkit: fix tests
* [`172f3a19`](NixOS/nixpkgs@172f3a1) lldb_5, lldb_6: add patch for >=python-3.7
* [`09bc8c8d`](NixOS/nixpkgs@09bc8c8) can-isotp: 20180629 -> 20200910
* [`044533c9`](NixOS/nixpkgs@044533c) libndtypes, pythonPackages.ndtypes: unstable-2018-11-27 -> unstable-2019-08-01
* [`dcd6847d`](NixOS/nixpkgs@dcd6847) libxnd, pythonPackages.xnd: unstable-2018-11-27 -> unstable-2019-08-01
* [`eb86bff3`](NixOS/nixpkgs@eb86bff) libgumath, pythonPackages.gumath: unstable-2018-11-27 -> unstable-2019-08-01
* [`43c0499f`](NixOS/nixpkgs@43c0499) python38Packages.shouldbe: disable for python3.8
* [`96e44389`](NixOS/nixpkgs@96e4438) contributing.md: mention rebased or squashed merges
* [`4d4516a0`](NixOS/nixpkgs@4d4516a) gnome-network-displays: init at 0.90.4
* [`9a4468b9`](NixOS/nixpkgs@9a4468b) linux: 5.9-rc4 -> 5.9-rc5
* [`4e435eee`](NixOS/nixpkgs@4e435ee) pythonPackages.cfn-lint: 0.35.0 -> 0.35.1
* [`358cfe91`](NixOS/nixpkgs@358cfe9) gitAndTools.git-machete: 2.15.5 -> 2.15.6
* [`edd8fb37`](NixOS/nixpkgs@edd8fb3) sunvox: fix hash mismatch
* [`fa1272e9`](NixOS/nixpkgs@fa1272e) emacsPackages.libgit: Fix build
* [`8bb5c62a`](NixOS/nixpkgs@8bb5c62) gallery-dl: 1.14.5 -> 1.15.0
* [`56660562`](NixOS/nixpkgs@5666056) vmmlib: fix build
* [`215cfc98`](NixOS/nixpkgs@215cfc9) .editorconfig: add timidity.cfg
* [`c3244181`](NixOS/nixpkgs@c324418) pythonPackages.netaddr: 0.7.19 -> 0.8.0
* [`b8f130e2`](NixOS/nixpkgs@b8f130e) python.pkgs.scikit-optimize: 0.6 -> 0.8.1
* [`4482e5ec`](NixOS/nixpkgs@4482e5e) dotnetenv: editorconfig fixes
* [`d8b5fb33`](NixOS/nixpkgs@d8b5fb3) oh-my-zsh: 2020-09-14 -> 2020-09-20
* [`6543cbf5`](NixOS/nixpkgs@6543cbf) python3Packages.parse: 1.16.0 -> 1.18.0
* [`f690cacb`](NixOS/nixpkgs@f690cac) python3Packages.python-docx: run behave tests
* [`0f34c4eb`](NixOS/nixpkgs@0f34c4e) python3Packages.behave: skip test failing on darwin
* [`781b870c`](NixOS/nixpkgs@781b870) xmlbird: fix build with python 3.8
* [`0b67d9e8`](NixOS/nixpkgs@0b67d9e) birdfont: fix build on non-nixos/debian systems
* [`06975755`](NixOS/nixpkgs@0697575) doc/python: remove trailing whitespace
* [`74c2ed9e`](NixOS/nixpkgs@74c2ed9) nixos/tools/nixos-install: remove trailing whitespace
* [`a4edf4ca`](NixOS/nixpkgs@a4edf4c) perlPackages.HamAPRSFAP: init at 1.21
* [`bf71f459`](NixOS/nixpkgs@bf71f45) liboping: fix build on Darwin
* [`31e54cdd`](NixOS/nixpkgs@31e54cd) firefox: enable pipewire+webrtc for wayland users
* [`efa99abf`](NixOS/nixpkgs@efa99ab) singularity: 3.6.2 -> 3.6.3
* [`85ce3805`](NixOS/nixpkgs@85ce380) terraform-compliance: fix build
* [`c743f4e1`](NixOS/nixpkgs@c743f4e) mruby: 2.1.1 -> 2.1.2
* [`dbdd5d41`](NixOS/nixpkgs@dbdd5d4) maintainer: Add bryanasdev000
* [`8465b484`](NixOS/nixpkgs@8465b48) popeye: init at 0.8.10
* [`142f6d85`](NixOS/nixpkgs@142f6d8) velero: init at 1.5.1
* [`617d5b7f`](NixOS/nixpkgs@617d5b7) velero: remove old heptio-ark package
* [`a4afd525`](NixOS/nixpkgs@a4afd52) prometheus: Unbreak IPv6 listenAddress
* [`4e155d6b`](NixOS/nixpkgs@4e155d6) fontmatrix: 0.6.0 → 0.6.0-qt5 (NixOS/nixpkgs#97800)
* [`c06b0edd`](NixOS/nixpkgs@c06b0ed) ocamlPackages.apron: 0.9.12 → 0.9.13
* [`0996ac6b`](NixOS/nixpkgs@0996ac6) nvtop: Make independent of Nvidia driver version
* [`9ff87334`](NixOS/nixpkgs@9ff8733) maintainers: add charvp
* [`090cc5d6`](NixOS/nixpkgs@090cc5d) bluej: init at 4.2.2
* [`5d365404`](NixOS/nixpkgs@5d36540) beets: add extrafiles plugin
* [`0bbeca2f`](NixOS/nixpkgs@0bbeca2) ocamlPackages.zarith: 1.9 -> 1.10
* [`cc2982b7`](NixOS/nixpkgs@cc2982b) untrunc: update to latest git version
* [`f5a61c26`](NixOS/nixpkgs@f5a61c2) lizardfs: fix build
* [`70b417f5`](NixOS/nixpkgs@70b417f) dconf2nix: 0.0.5 -> 0.0.6
* [`846acc4c`](NixOS/nixpkgs@846acc4) slack: 4.8.0 -> 4.9.1
* [`f000c741`](NixOS/nixpkgs@f000c74) pythonPackages.b2sdk: init at 1.1.4
* [`3c03a982`](NixOS/nixpkgs@3c03a98) duplicity: use new b2sdk python package
* [`7bd19e7a`](NixOS/nixpkgs@7bd19e7) nix-prefetch: fix compatibility with nixUnstable again
* [`731fd9ef`](NixOS/nixpkgs@731fd9e) androidStudioPackages.{dev,canary}: 4.2.0.10 -> 4.2.0.11
* [`5f19b74d`](NixOS/nixpkgs@5f19b74) f3: clean-ups and compile on darwin (NixOS/nixpkgs#98365)
* [`d4eed013`](NixOS/nixpkgs@d4eed01) gitlab-runner: 13.3.1 -> 13.4.0 (NixOS/nixpkgs#98377)
* [`ac49c2f7`](NixOS/nixpkgs@ac49c2f) freeoffice: 976 -> 978
* [`114202e3`](NixOS/nixpkgs@114202e) thunderbird-78: fix NixOS/nixpkgs#97994: broken UI in 78.2.2
* [`d33267c6`](NixOS/nixpkgs@d33267c) thunderbird.meta.maintainers: add myself
* [`517c9755`](NixOS/nixpkgs@517c975) Sylk: 3.8.0 -> 3.8.4 (NixOS/nixpkgs#98392)
* [`8be7347e`](NixOS/nixpkgs@8be7347) pythonPackages.mohawk: init at 1.1.0
* [`a2228f4c`](NixOS/nixpkgs@a2228f4) libversion: fix tests on Darwin (NixOS/nixpkgs#98361)
* [`3b6800c7`](NixOS/nixpkgs@3b6800c) python3Packages.spyder: fix build
* [`9dc65423`](NixOS/nixpkgs@9dc6542) pythonPackages.spyder-kernels: 1.9.3 -> 1.9.4
* [`6e4908a5`](NixOS/nixpkgs@6e4908a) spyder: 4.1.4 -> 4.1.5
* [`8403806a`](NixOS/nixpkgs@8403806) python3Packages.rising: init at 0.2.0post0
* [`4f03644c`](NixOS/nixpkgs@4f03644) spotify: support --force-device-scale-factor
* [`0e0dc554`](NixOS/nixpkgs@0e0dc55) rust-analyzer: 2020-08-24 -> 2020-09-21
* [`21a6f3aa`](NixOS/nixpkgs@21a6f3a) rust-analyzer: fix build
* [`d45ea33a`](NixOS/nixpkgs@d45ea33) pythonPackages.pecan: 1.3.3 -> 1.4.0
* [`143289ad`](NixOS/nixpkgs@143289a) pythonPackages.WSME: fix build
* [`e883c657`](NixOS/nixpkgs@e883c65) softmaker-office: remove /bin/ls intercept
* [`860bc40a`](NixOS/nixpkgs@860bc40) sundials: add KLU support
* [`4e888fb7`](NixOS/nixpkgs@4e888fb) python2Packages.scikits-odes: disable
* [`85c07678`](NixOS/nixpkgs@85c0767) isso: build from master
* [`cd1b7693`](NixOS/nixpkgs@cd1b769) pythonPackages.xlib: 0.25 -> 0.28
* [`b0edb341`](NixOS/nixpkgs@b0edb34) buildbot: 2.8.2 -> 2.8.4
* [`e2283652`](NixOS/nixpkgs@e228365) pythonPackages.yq: repackage as library, convert to application, fix tests
* [`1a44ef90`](NixOS/nixpkgs@1a44ef9) pythonPackages.yq: 2.10.1 -> 2.11.0
* [`40a58cc6`](NixOS/nixpkgs@40a58cc) python3.pkgs.yq: make stdin a tty for tests
* [`4990bd11`](NixOS/nixpkgs@4990bd1) Dino: Enable on macOS/Darwin
* [`f4cc8c18`](NixOS/nixpkgs@f4cc8c1) clightning: 0.9.0-1 -> 0.9.1
* [`243f56fb`](NixOS/nixpkgs@243f56f) python3.pkgs.bokeh: 2.1.1 -> 2.2.1
* [`4e1f8e4e`](NixOS/nixpkgs@4e1f8e4) python3Packages.xarray: 0.16.0 -> 0.16.1
* [`5a71d961`](NixOS/nixpkgs@5a71d96) firecracker: 0.21.1 -> 0.22.0
* [`647be9d0`](NixOS/nixpkgs@647be9d) age: 1.0.0-beta4 -> 1.0.0-beta5
* [`b06070c2`](NixOS/nixpkgs@b06070c) weather: enable on darwin
* [`43350332`](NixOS/nixpkgs@4335033) Update pkgs/applications/networking/instant-messengers/dino/default.nix
* [`b950a85b`](NixOS/nixpkgs@b950a85) luakit: 2.1 -> 2.2
* [`b531e659`](NixOS/nixpkgs@b531e65) fd: remove unnecessary reference to $src
* [`1d8fae0b`](NixOS/nixpkgs@1d8fae0) mpv: install mpv_identify.sh
* [`1399f780`](NixOS/nixpkgs@1399f78) ripgrep: remove unnecessary reference to $src
* [`a3323d49`](NixOS/nixpkgs@a3323d4) comic-neue: 2.3 -> 2.5
* [`4c4217bd`](NixOS/nixpkgs@4c4217b) cimg: 2.9.1 -> 2.9.2
* [`271b9ac9`](NixOS/nixpkgs@271b9ac) weather: reformat derivation
* [`c4cb4c22`](NixOS/nixpkgs@c4cb4c2) Declare several versions of OCamlformat (NixOS/nixpkgs#88799)
* [`47997634`](NixOS/nixpkgs@4799763) duf: init at 0.1.0 (NixOS/nixpkgs#98396)
* [`534ad685`](NixOS/nixpkgs@534ad68) viu: 1.0 -> 1.1
* [`a762bbf7`](NixOS/nixpkgs@a762bbf) pythonPackages.http-parser: init at 0.9.0
* [`b3ca5036`](NixOS/nixpkgs@b3ca503) pythonPackages.mocket: 3.8.9 -> 3.9.0
* [`9fde97d8`](NixOS/nixpkgs@9fde97d) python3Packages.pyxnat: init at 1.3
* [`03ea51a8`](NixOS/nixpkgs@03ea51a) python3Packages.dipy: 1.1.1 -> 1.2.0
* [`a4c2512d`](NixOS/nixpkgs@a4c2512) vimPlugins.hoon-vim: init at 2020-02-19
* [`943fa12e`](NixOS/nixpkgs@943fa12) hop: fix build
* [`06098c76`](NixOS/nixpkgs@06098c7) bigloo: 4.1a-2 → 4.3h; hop: 2.5.1 → 3.3.0
* [`f29f67bd`](NixOS/nixpkgs@f29f67b) Removing myself from maintainers list of blockchains
* [`ec92ffc5`](NixOS/nixpkgs@ec92ffc) orocos-kdl: init at 1.4.0
* [`83162ab3`](NixOS/nixpkgs@83162ab) pythonPackages.pykdl: init at 1.4.0
* [`23370afc`](NixOS/nixpkgs@23370af) curlie: 1.3.1 -> 1.5.4
* [`d1a27a5f`](NixOS/nixpkgs@d1a27a5) chromium: 85.0.4183.102 -> 85.0.4183.121
* [`e2926577`](NixOS/nixpkgs@e292657) perl-cross: fix . being included in INC
* [`bd4805b6`](NixOS/nixpkgs@bd4805b) pythonPackages.django: 2.2.15 -> 2.2.16
* [`11c36334`](NixOS/nixpkgs@11c3633) vscode-extensions.vadimcn.vscode-lldb: init at 1.5.3
* [`bc2e4628`](NixOS/nixpkgs@bc2e462) maestral-gui: Fix Qt by using libsForQt5
* [`8463f5c9`](NixOS/nixpkgs@8463f5c) pythonPackages.dropbox: 10.3.1 -> 10.4.1
* [`08ab7f91`](NixOS/nixpkgs@08ab7f9) pythonPackages.dbus-next: init at 0.1.4
* [`b3e1fd55`](NixOS/nixpkgs@b3e1fd5) pythonPackages.maestral: 1.1.0 -> 1.2.0
* [`6dad7ddb`](NixOS/nixpkgs@6dad7dd) maestral-qt: 1.1.0 -> 1.2.0
* [`5f31ac17`](NixOS/nixpkgs@5f31ac1) ubidump: init at unstable-2019-09-11
* [`a775c939`](NixOS/nixpkgs@a775c93) ocamlPackages.zed: 2.0.3 → 3.1.0
* [`2904bef2`](NixOS/nixpkgs@2904bef) python3Packages.csvw: init at 1.8.0
* [`8fca119c`](NixOS/nixpkgs@8fca119) python3Packages.clldutils: init at 3.5.2
* [`0f509906`](NixOS/nixpkgs@0f50990) python3Packages.segments: init at 2.1.3
* [`53c78da3`](NixOS/nixpkgs@53c78da) weather: cleanups
* [`e05feccc`](NixOS/nixpkgs@e05fecc) weather: enable on all Unix platforms
* [`7abb57c7`](NixOS/nixpkgs@7abb57c) fix passing qt5 version to pythonInterpreters
* [`68561ccf`](NixOS/nixpkgs@68561cc) obs-v4l2sink: update to latest git 'master' version
* [`a1f8e0b4`](NixOS/nixpkgs@a1f8e0b) coqPackages.metalib: 20170713 → 20200527
* [`7c411b66`](NixOS/nixpkgs@7c411b6) linux-rt_5_4: 5.4.61-rt37 -> 5.4.66-rt38
* [`4d9e2972`](NixOS/nixpkgs@4d9e297) zoom-us: 5.2.458699.0906 -> 5.3.465578.0920
* [`382f7ce9`](NixOS/nixpkgs@382f7ce) buildah: 1.16.1 -> 1.16.2
* [`5c27f0dd`](NixOS/nixpkgs@5c27f0d) podman: 2.0.6 -> 2.1.0
* [`2e30e228`](NixOS/nixpkgs@2e30e22) bettercap: build on darwin
* [`ff64cb72`](NixOS/nixpkgs@ff64cb7) amass: 3.10.1 -> 3.10.3
* [`36ad05e8`](NixOS/nixpkgs@36ad05e) vscode-extensions.haskell.haskell: init at 1.1.0 (NixOS/nixpkgs#98251)
* [`fccf069e`](NixOS/nixpkgs@fccf069) python3Packages.transformers: 3.1.0 -> 3.2.0
github-actions bot added a commit to pbogdan/nix-hie that referenced this pull request Sep 27, 2020
## Motivation

Dependencies should be up to date.

## Changelog for unstable:
Commits: [NixOS/nixpkgs@1179840f...daaa0e33](NixOS/nixpkgs@1179840...daaa0e3)

* [`0e6477d6`](NixOS/nixpkgs@0e6477d) vscodium: 1.48.2 -> 1.49.1
* [`7ea5b08c`](NixOS/nixpkgs@7ea5b08) gnat: fix build
* [`e3796bc8`](NixOS/nixpkgs@e3796bc) shadowsocks-rust: 1.8.17 -> 1.8.18
* [`670fe111`](NixOS/nixpkgs@670fe11) celluloid: 0.19 -> 0.20
* [`d61c16cd`](NixOS/nixpkgs@d61c16c) sslyze: fix build
* [`f8473b1d`](NixOS/nixpkgs@f8473b1) openssh_hpn: fix source
* [`e11a4875`](NixOS/nixpkgs@e11a487) josm: use latest jdk
* [`aabe6e23`](NixOS/nixpkgs@aabe6e2) dbeaver: use latest jdk
* [`8ba71cef`](NixOS/nixpkgs@8ba71ce) mediathekview: use latest jre
* [`eb61d33a`](NixOS/nixpkgs@eb61d33) maintainers: remove joncojonathan
* [`328fa738`](NixOS/nixpkgs@328fa73) deja-dup: remove joncojonathan as maintainer
* [`01fed034`](NixOS/nixpkgs@01fed03) closurecompiler: use latest jdk
* [`9481828b`](NixOS/nixpkgs@9481828) emscripten: use latest jdk
* [`ff078a7e`](NixOS/nixpkgs@ff078a7) keepass: remove joncojonathan as maintainer
* [`84a0da26`](NixOS/nixpkgs@84a0da2) runelite: use latest jdk
* [`609e3aa5`](NixOS/nixpkgs@609e3aa) gramps: remove joncojonathan as maintainer
* [`5e46e2a7`](NixOS/nixpkgs@5e46e2a) awstats: use latest jdk
* [`3426068a`](NixOS/nixpkgs@3426068) arduino: use latest jdk
* [`effd6aa5`](NixOS/nixpkgs@effd6aa) gpsprune: use latest jdk
* [`ef4cbbab`](NixOS/nixpkgs@ef4cbba) clojure: use latest jdk
* [`e13e02f3`](NixOS/nixpkgs@e13e02f) jedit: use latest jdk
* [`907fd8d6`](NixOS/nixpkgs@907fd8d) youtube-dl: 2020.09.14 -> 2020.09.20
* [`80a6743c`](NixOS/nixpkgs@80a6743) opencascade: enable macOS build and add features
* [`e5869f99`](NixOS/nixpkgs@e5869f9) gitAndTools.git-imerge: 1.1.0 -> 1.2.0
* [`4fc8c509`](NixOS/nixpkgs@4fc8c50) platforms: add bigEndian and littleEndian
* [`40722346`](NixOS/nixpkgs@4072234) avy: 2017.10.16 -> 2019.05.01
* [`2f934a96`](NixOS/nixpkgs@2f934a9) qcad: fix library browser
* [`0b3ffb51`](NixOS/nixpkgs@0b3ffb5) cawbird: 1.1.0 -> 1.2.1
* [`05f99442`](NixOS/nixpkgs@05f9944) pythonPackages.glom: fix tests
* [`b103ddb9`](NixOS/nixpkgs@b103ddb) pythonPackages.mock-open: 1.3.1 -> 1.3.2
* [`355d255d`](NixOS/nixpkgs@355d255) pythonPackages.mock-open: 1.3.2 -> 1.4.0
* [`a28068a9`](NixOS/nixpkgs@a28068a) svgbob: fix build
* [`a4261572`](NixOS/nixpkgs@a426157) qcad: replace qt argument
* [`d07100d8`](NixOS/nixpkgs@d07100d) python3Packages.crate: init at 0.24.0
* [`b3178aee`](NixOS/nixpkgs@b3178ae) python.pkgs.agate-sql: fix tests by adding crate to inputs
* [`eb9393a4`](NixOS/nixpkgs@eb9393a) csvkit: 1.0.4 -> 1.0.5
* [`8bf99f67`](NixOS/nixpkgs@8bf99f6) csvkit: fix tests
* [`172f3a19`](NixOS/nixpkgs@172f3a1) lldb_5, lldb_6: add patch for >=python-3.7
* [`09bc8c8d`](NixOS/nixpkgs@09bc8c8) can-isotp: 20180629 -> 20200910
* [`044533c9`](NixOS/nixpkgs@044533c) libndtypes, pythonPackages.ndtypes: unstable-2018-11-27 -> unstable-2019-08-01
* [`dcd6847d`](NixOS/nixpkgs@dcd6847) libxnd, pythonPackages.xnd: unstable-2018-11-27 -> unstable-2019-08-01
* [`eb86bff3`](NixOS/nixpkgs@eb86bff) libgumath, pythonPackages.gumath: unstable-2018-11-27 -> unstable-2019-08-01
* [`43c0499f`](NixOS/nixpkgs@43c0499) python38Packages.shouldbe: disable for python3.8
* [`96e44389`](NixOS/nixpkgs@96e4438) contributing.md: mention rebased or squashed merges
* [`4d4516a0`](NixOS/nixpkgs@4d4516a) gnome-network-displays: init at 0.90.4
* [`9a4468b9`](NixOS/nixpkgs@9a4468b) linux: 5.9-rc4 -> 5.9-rc5
* [`4e435eee`](NixOS/nixpkgs@4e435ee) pythonPackages.cfn-lint: 0.35.0 -> 0.35.1
* [`358cfe91`](NixOS/nixpkgs@358cfe9) gitAndTools.git-machete: 2.15.5 -> 2.15.6
* [`edd8fb37`](NixOS/nixpkgs@edd8fb3) sunvox: fix hash mismatch
* [`fa1272e9`](NixOS/nixpkgs@fa1272e) emacsPackages.libgit: Fix build
* [`8bb5c62a`](NixOS/nixpkgs@8bb5c62) gallery-dl: 1.14.5 -> 1.15.0
* [`56660562`](NixOS/nixpkgs@5666056) vmmlib: fix build
* [`215cfc98`](NixOS/nixpkgs@215cfc9) .editorconfig: add timidity.cfg
* [`c3244181`](NixOS/nixpkgs@c324418) pythonPackages.netaddr: 0.7.19 -> 0.8.0
* [`b8f130e2`](NixOS/nixpkgs@b8f130e) python.pkgs.scikit-optimize: 0.6 -> 0.8.1
* [`4482e5ec`](NixOS/nixpkgs@4482e5e) dotnetenv: editorconfig fixes
* [`d8b5fb33`](NixOS/nixpkgs@d8b5fb3) oh-my-zsh: 2020-09-14 -> 2020-09-20
* [`6543cbf5`](NixOS/nixpkgs@6543cbf) python3Packages.parse: 1.16.0 -> 1.18.0
* [`f690cacb`](NixOS/nixpkgs@f690cac) python3Packages.python-docx: run behave tests
* [`0f34c4eb`](NixOS/nixpkgs@0f34c4e) python3Packages.behave: skip test failing on darwin
* [`781b870c`](NixOS/nixpkgs@781b870) xmlbird: fix build with python 3.8
* [`0b67d9e8`](NixOS/nixpkgs@0b67d9e) birdfont: fix build on non-nixos/debian systems
* [`06975755`](NixOS/nixpkgs@0697575) doc/python: remove trailing whitespace
* [`74c2ed9e`](NixOS/nixpkgs@74c2ed9) nixos/tools/nixos-install: remove trailing whitespace
* [`a4edf4ca`](NixOS/nixpkgs@a4edf4c) perlPackages.HamAPRSFAP: init at 1.21
* [`bf71f459`](NixOS/nixpkgs@bf71f45) liboping: fix build on Darwin
* [`31e54cdd`](NixOS/nixpkgs@31e54cd) firefox: enable pipewire+webrtc for wayland users
* [`efa99abf`](NixOS/nixpkgs@efa99ab) singularity: 3.6.2 -> 3.6.3
* [`85ce3805`](NixOS/nixpkgs@85ce380) terraform-compliance: fix build
* [`c743f4e1`](NixOS/nixpkgs@c743f4e) mruby: 2.1.1 -> 2.1.2
* [`dbdd5d41`](NixOS/nixpkgs@dbdd5d4) maintainer: Add bryanasdev000
* [`8465b484`](NixOS/nixpkgs@8465b48) popeye: init at 0.8.10
* [`142f6d85`](NixOS/nixpkgs@142f6d8) velero: init at 1.5.1
* [`617d5b7f`](NixOS/nixpkgs@617d5b7) velero: remove old heptio-ark package
* [`a4afd525`](NixOS/nixpkgs@a4afd52) prometheus: Unbreak IPv6 listenAddress
* [`4e155d6b`](NixOS/nixpkgs@4e155d6) fontmatrix: 0.6.0 → 0.6.0-qt5 (NixOS/nixpkgs#97800)
* [`c06b0edd`](NixOS/nixpkgs@c06b0ed) ocamlPackages.apron: 0.9.12 → 0.9.13
* [`0996ac6b`](NixOS/nixpkgs@0996ac6) nvtop: Make independent of Nvidia driver version
* [`9ff87334`](NixOS/nixpkgs@9ff8733) maintainers: add charvp
* [`090cc5d6`](NixOS/nixpkgs@090cc5d) bluej: init at 4.2.2
* [`5d365404`](NixOS/nixpkgs@5d36540) beets: add extrafiles plugin
* [`0bbeca2f`](NixOS/nixpkgs@0bbeca2) ocamlPackages.zarith: 1.9 -> 1.10
* [`cc2982b7`](NixOS/nixpkgs@cc2982b) untrunc: update to latest git version
* [`f5a61c26`](NixOS/nixpkgs@f5a61c2) lizardfs: fix build
* [`70b417f5`](NixOS/nixpkgs@70b417f) dconf2nix: 0.0.5 -> 0.0.6
* [`846acc4c`](NixOS/nixpkgs@846acc4) slack: 4.8.0 -> 4.9.1
* [`f000c741`](NixOS/nixpkgs@f000c74) pythonPackages.b2sdk: init at 1.1.4
* [`3c03a982`](NixOS/nixpkgs@3c03a98) duplicity: use new b2sdk python package
* [`7bd19e7a`](NixOS/nixpkgs@7bd19e7) nix-prefetch: fix compatibility with nixUnstable again
* [`731fd9ef`](NixOS/nixpkgs@731fd9e) androidStudioPackages.{dev,canary}: 4.2.0.10 -> 4.2.0.11
* [`5f19b74d`](NixOS/nixpkgs@5f19b74) f3: clean-ups and compile on darwin (NixOS/nixpkgs#98365)
* [`d4eed013`](NixOS/nixpkgs@d4eed01) gitlab-runner: 13.3.1 -> 13.4.0 (NixOS/nixpkgs#98377)
* [`ac49c2f7`](NixOS/nixpkgs@ac49c2f) freeoffice: 976 -> 978
* [`114202e3`](NixOS/nixpkgs@114202e) thunderbird-78: fix NixOS/nixpkgs#97994: broken UI in 78.2.2
* [`d33267c6`](NixOS/nixpkgs@d33267c) thunderbird.meta.maintainers: add myself
* [`517c9755`](NixOS/nixpkgs@517c975) Sylk: 3.8.0 -> 3.8.4 (NixOS/nixpkgs#98392)
* [`8be7347e`](NixOS/nixpkgs@8be7347) pythonPackages.mohawk: init at 1.1.0
* [`a2228f4c`](NixOS/nixpkgs@a2228f4) libversion: fix tests on Darwin (NixOS/nixpkgs#98361)
* [`3b6800c7`](NixOS/nixpkgs@3b6800c) python3Packages.spyder: fix build
* [`9dc65423`](NixOS/nixpkgs@9dc6542) pythonPackages.spyder-kernels: 1.9.3 -> 1.9.4
* [`6e4908a5`](NixOS/nixpkgs@6e4908a) spyder: 4.1.4 -> 4.1.5
* [`8403806a`](NixOS/nixpkgs@8403806) python3Packages.rising: init at 0.2.0post0
* [`4f03644c`](NixOS/nixpkgs@4f03644) spotify: support --force-device-scale-factor
* [`0e0dc554`](NixOS/nixpkgs@0e0dc55) rust-analyzer: 2020-08-24 -> 2020-09-21
* [`21a6f3aa`](NixOS/nixpkgs@21a6f3a) rust-analyzer: fix build
* [`d45ea33a`](NixOS/nixpkgs@d45ea33) pythonPackages.pecan: 1.3.3 -> 1.4.0
* [`143289ad`](NixOS/nixpkgs@143289a) pythonPackages.WSME: fix build
* [`e883c657`](NixOS/nixpkgs@e883c65) softmaker-office: remove /bin/ls intercept
* [`860bc40a`](NixOS/nixpkgs@860bc40) sundials: add KLU support
* [`4e888fb7`](NixOS/nixpkgs@4e888fb) python2Packages.scikits-odes: disable
* [`85c07678`](NixOS/nixpkgs@85c0767) isso: build from master
* [`cd1b7693`](NixOS/nixpkgs@cd1b769) pythonPackages.xlib: 0.25 -> 0.28
* [`b0edb341`](NixOS/nixpkgs@b0edb34) buildbot: 2.8.2 -> 2.8.4
* [`e2283652`](NixOS/nixpkgs@e228365) pythonPackages.yq: repackage as library, convert to application, fix tests
* [`1a44ef90`](NixOS/nixpkgs@1a44ef9) pythonPackages.yq: 2.10.1 -> 2.11.0
* [`40a58cc6`](NixOS/nixpkgs@40a58cc) python3.pkgs.yq: make stdin a tty for tests
* [`4990bd11`](NixOS/nixpkgs@4990bd1) Dino: Enable on macOS/Darwin
* [`f4cc8c18`](NixOS/nixpkgs@f4cc8c1) clightning: 0.9.0-1 -> 0.9.1
* [`243f56fb`](NixOS/nixpkgs@243f56f) python3.pkgs.bokeh: 2.1.1 -> 2.2.1
* [`4e1f8e4e`](NixOS/nixpkgs@4e1f8e4) python3Packages.xarray: 0.16.0 -> 0.16.1
* [`5a71d961`](NixOS/nixpkgs@5a71d96) firecracker: 0.21.1 -> 0.22.0
* [`647be9d0`](NixOS/nixpkgs@647be9d) age: 1.0.0-beta4 -> 1.0.0-beta5
* [`b06070c2`](NixOS/nixpkgs@b06070c) weather: enable on darwin
* [`43350332`](NixOS/nixpkgs@4335033) Update pkgs/applications/networking/instant-messengers/dino/default.nix
* [`b950a85b`](NixOS/nixpkgs@b950a85) luakit: 2.1 -> 2.2
* [`b531e659`](NixOS/nixpkgs@b531e65) fd: remove unnecessary reference to $src
* [`1d8fae0b`](NixOS/nixpkgs@1d8fae0) mpv: install mpv_identify.sh
* [`1399f780`](NixOS/nixpkgs@1399f78) ripgrep: remove unnecessary reference to $src
* [`a3323d49`](NixOS/nixpkgs@a3323d4) comic-neue: 2.3 -> 2.5
* [`4c4217bd`](NixOS/nixpkgs@4c4217b) cimg: 2.9.1 -> 2.9.2
* [`271b9ac9`](NixOS/nixpkgs@271b9ac) weather: reformat derivation
* [`c4cb4c22`](NixOS/nixpkgs@c4cb4c2) Declare several versions of OCamlformat (NixOS/nixpkgs#88799)
* [`47997634`](NixOS/nixpkgs@4799763) duf: init at 0.1.0 (NixOS/nixpkgs#98396)
* [`534ad685`](NixOS/nixpkgs@534ad68) viu: 1.0 -> 1.1
* [`a762bbf7`](NixOS/nixpkgs@a762bbf) pythonPackages.http-parser: init at 0.9.0
* [`b3ca5036`](NixOS/nixpkgs@b3ca503) pythonPackages.mocket: 3.8.9 -> 3.9.0
* [`9fde97d8`](NixOS/nixpkgs@9fde97d) python3Packages.pyxnat: init at 1.3
* [`03ea51a8`](NixOS/nixpkgs@03ea51a) python3Packages.dipy: 1.1.1 -> 1.2.0
* [`a4c2512d`](NixOS/nixpkgs@a4c2512) vimPlugins.hoon-vim: init at 2020-02-19
* [`943fa12e`](NixOS/nixpkgs@943fa12) hop: fix build
* [`06098c76`](NixOS/nixpkgs@06098c7) bigloo: 4.1a-2 → 4.3h; hop: 2.5.1 → 3.3.0
* [`f29f67bd`](NixOS/nixpkgs@f29f67b) Removing myself from maintainers list of blockchains
* [`ec92ffc5`](NixOS/nixpkgs@ec92ffc) orocos-kdl: init at 1.4.0
* [`83162ab3`](NixOS/nixpkgs@83162ab) pythonPackages.pykdl: init at 1.4.0
* [`23370afc`](NixOS/nixpkgs@23370af) curlie: 1.3.1 -> 1.5.4
* [`d1a27a5f`](NixOS/nixpkgs@d1a27a5) chromium: 85.0.4183.102 -> 85.0.4183.121
* [`e2926577`](NixOS/nixpkgs@e292657) perl-cross: fix . being included in INC
* [`bd4805b6`](NixOS/nixpkgs@bd4805b) pythonPackages.django: 2.2.15 -> 2.2.16
* [`11c36334`](NixOS/nixpkgs@11c3633) vscode-extensions.vadimcn.vscode-lldb: init at 1.5.3
* [`bc2e4628`](NixOS/nixpkgs@bc2e462) maestral-gui: Fix Qt by using libsForQt5
* [`8463f5c9`](NixOS/nixpkgs@8463f5c) pythonPackages.dropbox: 10.3.1 -> 10.4.1
* [`08ab7f91`](NixOS/nixpkgs@08ab7f9) pythonPackages.dbus-next: init at 0.1.4
* [`b3e1fd55`](NixOS/nixpkgs@b3e1fd5) pythonPackages.maestral: 1.1.0 -> 1.2.0
* [`6dad7ddb`](NixOS/nixpkgs@6dad7dd) maestral-qt: 1.1.0 -> 1.2.0
* [`5f31ac17`](NixOS/nixpkgs@5f31ac1) ubidump: init at unstable-2019-09-11
* [`a775c939`](NixOS/nixpkgs@a775c93) ocamlPackages.zed: 2.0.3 → 3.1.0
* [`2904bef2`](NixOS/nixpkgs@2904bef) python3Packages.csvw: init at 1.8.0
* [`8fca119c`](NixOS/nixpkgs@8fca119) python3Packages.clldutils: init at 3.5.2
* [`0f509906`](NixOS/nixpkgs@0f50990) python3Packages.segments: init at 2.1.3
* [`53c78da3`](NixOS/nixpkgs@53c78da) weather: cleanups
* [`e05feccc`](NixOS/nixpkgs@e05fecc) weather: enable on all Unix platforms
* [`7abb57c7`](NixOS/nixpkgs@7abb57c) fix passing qt5 version to pythonInterpreters
* [`68561ccf`](NixOS/nixpkgs@68561cc) obs-v4l2sink: update to latest git 'master' version
* [`a1f8e0b4`](NixOS/nixpkgs@a1f8e0b) coqPackages.metalib: 20170713 → 20200527
* [`7c411b66`](NixOS/nixpkgs@7c411b6) linux-rt_5_4: 5.4.61-rt37 -> 5.4.66-rt38
* [`4d9e2972`](NixOS/nixpkgs@4d9e297) zoom-us: 5.2.458699.0906 -> 5.3.465578.0920
* [`382f7ce9`](NixOS/nixpkgs@382f7ce) buildah: 1.16.1 -> 1.16.2
* [`5c27f0dd`](NixOS/nixpkgs@5c27f0d) podman: 2.0.6 -> 2.1.0
* [`2e30e228`](NixOS/nixpkgs@2e30e22) bettercap: build on darwin
* [`ff64cb72`](NixOS/nixpkgs@ff64cb7) amass: 3.10.1 -> 3.10.3
* [`36ad05e8`](NixOS/nixpkgs@36ad05e) vscode-extensions.haskell.haskell: init at 1.1.0 (NixOS/nixpkgs#98251)
* [`fccf069e`](NixOS/nixpkgs@fccf069) python3Packages.transformers: 3.1.0 -> 3.2.0
github-actions bot added a commit to pbogdan/nvs that referenced this pull request Sep 27, 2020
## Motivation

Dependencies should be up to date.

## Changelog for unstable:
Commits: [NixOS/nixpkgs@1179840f...daaa0e33](NixOS/nixpkgs@1179840...daaa0e3)

* [`0e6477d6`](NixOS/nixpkgs@0e6477d) vscodium: 1.48.2 -> 1.49.1
* [`7ea5b08c`](NixOS/nixpkgs@7ea5b08) gnat: fix build
* [`e3796bc8`](NixOS/nixpkgs@e3796bc) shadowsocks-rust: 1.8.17 -> 1.8.18
* [`670fe111`](NixOS/nixpkgs@670fe11) celluloid: 0.19 -> 0.20
* [`d61c16cd`](NixOS/nixpkgs@d61c16c) sslyze: fix build
* [`f8473b1d`](NixOS/nixpkgs@f8473b1) openssh_hpn: fix source
* [`e11a4875`](NixOS/nixpkgs@e11a487) josm: use latest jdk
* [`aabe6e23`](NixOS/nixpkgs@aabe6e2) dbeaver: use latest jdk
* [`8ba71cef`](NixOS/nixpkgs@8ba71ce) mediathekview: use latest jre
* [`eb61d33a`](NixOS/nixpkgs@eb61d33) maintainers: remove joncojonathan
* [`328fa738`](NixOS/nixpkgs@328fa73) deja-dup: remove joncojonathan as maintainer
* [`01fed034`](NixOS/nixpkgs@01fed03) closurecompiler: use latest jdk
* [`9481828b`](NixOS/nixpkgs@9481828) emscripten: use latest jdk
* [`ff078a7e`](NixOS/nixpkgs@ff078a7) keepass: remove joncojonathan as maintainer
* [`84a0da26`](NixOS/nixpkgs@84a0da2) runelite: use latest jdk
* [`609e3aa5`](NixOS/nixpkgs@609e3aa) gramps: remove joncojonathan as maintainer
* [`5e46e2a7`](NixOS/nixpkgs@5e46e2a) awstats: use latest jdk
* [`3426068a`](NixOS/nixpkgs@3426068) arduino: use latest jdk
* [`effd6aa5`](NixOS/nixpkgs@effd6aa) gpsprune: use latest jdk
* [`ef4cbbab`](NixOS/nixpkgs@ef4cbba) clojure: use latest jdk
* [`e13e02f3`](NixOS/nixpkgs@e13e02f) jedit: use latest jdk
* [`907fd8d6`](NixOS/nixpkgs@907fd8d) youtube-dl: 2020.09.14 -> 2020.09.20
* [`80a6743c`](NixOS/nixpkgs@80a6743) opencascade: enable macOS build and add features
* [`e5869f99`](NixOS/nixpkgs@e5869f9) gitAndTools.git-imerge: 1.1.0 -> 1.2.0
* [`4fc8c509`](NixOS/nixpkgs@4fc8c50) platforms: add bigEndian and littleEndian
* [`40722346`](NixOS/nixpkgs@4072234) avy: 2017.10.16 -> 2019.05.01
* [`2f934a96`](NixOS/nixpkgs@2f934a9) qcad: fix library browser
* [`0b3ffb51`](NixOS/nixpkgs@0b3ffb5) cawbird: 1.1.0 -> 1.2.1
* [`05f99442`](NixOS/nixpkgs@05f9944) pythonPackages.glom: fix tests
* [`b103ddb9`](NixOS/nixpkgs@b103ddb) pythonPackages.mock-open: 1.3.1 -> 1.3.2
* [`355d255d`](NixOS/nixpkgs@355d255) pythonPackages.mock-open: 1.3.2 -> 1.4.0
* [`a28068a9`](NixOS/nixpkgs@a28068a) svgbob: fix build
* [`a4261572`](NixOS/nixpkgs@a426157) qcad: replace qt argument
* [`d07100d8`](NixOS/nixpkgs@d07100d) python3Packages.crate: init at 0.24.0
* [`b3178aee`](NixOS/nixpkgs@b3178ae) python.pkgs.agate-sql: fix tests by adding crate to inputs
* [`eb9393a4`](NixOS/nixpkgs@eb9393a) csvkit: 1.0.4 -> 1.0.5
* [`8bf99f67`](NixOS/nixpkgs@8bf99f6) csvkit: fix tests
* [`172f3a19`](NixOS/nixpkgs@172f3a1) lldb_5, lldb_6: add patch for >=python-3.7
* [`09bc8c8d`](NixOS/nixpkgs@09bc8c8) can-isotp: 20180629 -> 20200910
* [`044533c9`](NixOS/nixpkgs@044533c) libndtypes, pythonPackages.ndtypes: unstable-2018-11-27 -> unstable-2019-08-01
* [`dcd6847d`](NixOS/nixpkgs@dcd6847) libxnd, pythonPackages.xnd: unstable-2018-11-27 -> unstable-2019-08-01
* [`eb86bff3`](NixOS/nixpkgs@eb86bff) libgumath, pythonPackages.gumath: unstable-2018-11-27 -> unstable-2019-08-01
* [`43c0499f`](NixOS/nixpkgs@43c0499) python38Packages.shouldbe: disable for python3.8
* [`96e44389`](NixOS/nixpkgs@96e4438) contributing.md: mention rebased or squashed merges
* [`4d4516a0`](NixOS/nixpkgs@4d4516a) gnome-network-displays: init at 0.90.4
* [`9a4468b9`](NixOS/nixpkgs@9a4468b) linux: 5.9-rc4 -> 5.9-rc5
* [`4e435eee`](NixOS/nixpkgs@4e435ee) pythonPackages.cfn-lint: 0.35.0 -> 0.35.1
* [`358cfe91`](NixOS/nixpkgs@358cfe9) gitAndTools.git-machete: 2.15.5 -> 2.15.6
* [`edd8fb37`](NixOS/nixpkgs@edd8fb3) sunvox: fix hash mismatch
* [`fa1272e9`](NixOS/nixpkgs@fa1272e) emacsPackages.libgit: Fix build
* [`8bb5c62a`](NixOS/nixpkgs@8bb5c62) gallery-dl: 1.14.5 -> 1.15.0
* [`56660562`](NixOS/nixpkgs@5666056) vmmlib: fix build
* [`215cfc98`](NixOS/nixpkgs@215cfc9) .editorconfig: add timidity.cfg
* [`c3244181`](NixOS/nixpkgs@c324418) pythonPackages.netaddr: 0.7.19 -> 0.8.0
* [`b8f130e2`](NixOS/nixpkgs@b8f130e) python.pkgs.scikit-optimize: 0.6 -> 0.8.1
* [`4482e5ec`](NixOS/nixpkgs@4482e5e) dotnetenv: editorconfig fixes
* [`d8b5fb33`](NixOS/nixpkgs@d8b5fb3) oh-my-zsh: 2020-09-14 -> 2020-09-20
* [`6543cbf5`](NixOS/nixpkgs@6543cbf) python3Packages.parse: 1.16.0 -> 1.18.0
* [`f690cacb`](NixOS/nixpkgs@f690cac) python3Packages.python-docx: run behave tests
* [`0f34c4eb`](NixOS/nixpkgs@0f34c4e) python3Packages.behave: skip test failing on darwin
* [`781b870c`](NixOS/nixpkgs@781b870) xmlbird: fix build with python 3.8
* [`0b67d9e8`](NixOS/nixpkgs@0b67d9e) birdfont: fix build on non-nixos/debian systems
* [`06975755`](NixOS/nixpkgs@0697575) doc/python: remove trailing whitespace
* [`74c2ed9e`](NixOS/nixpkgs@74c2ed9) nixos/tools/nixos-install: remove trailing whitespace
* [`a4edf4ca`](NixOS/nixpkgs@a4edf4c) perlPackages.HamAPRSFAP: init at 1.21
* [`bf71f459`](NixOS/nixpkgs@bf71f45) liboping: fix build on Darwin
* [`31e54cdd`](NixOS/nixpkgs@31e54cd) firefox: enable pipewire+webrtc for wayland users
* [`efa99abf`](NixOS/nixpkgs@efa99ab) singularity: 3.6.2 -> 3.6.3
* [`85ce3805`](NixOS/nixpkgs@85ce380) terraform-compliance: fix build
* [`c743f4e1`](NixOS/nixpkgs@c743f4e) mruby: 2.1.1 -> 2.1.2
* [`dbdd5d41`](NixOS/nixpkgs@dbdd5d4) maintainer: Add bryanasdev000
* [`8465b484`](NixOS/nixpkgs@8465b48) popeye: init at 0.8.10
* [`142f6d85`](NixOS/nixpkgs@142f6d8) velero: init at 1.5.1
* [`617d5b7f`](NixOS/nixpkgs@617d5b7) velero: remove old heptio-ark package
* [`a4afd525`](NixOS/nixpkgs@a4afd52) prometheus: Unbreak IPv6 listenAddress
* [`4e155d6b`](NixOS/nixpkgs@4e155d6) fontmatrix: 0.6.0 → 0.6.0-qt5 (NixOS/nixpkgs#97800)
* [`c06b0edd`](NixOS/nixpkgs@c06b0ed) ocamlPackages.apron: 0.9.12 → 0.9.13
* [`0996ac6b`](NixOS/nixpkgs@0996ac6) nvtop: Make independent of Nvidia driver version
* [`9ff87334`](NixOS/nixpkgs@9ff8733) maintainers: add charvp
* [`090cc5d6`](NixOS/nixpkgs@090cc5d) bluej: init at 4.2.2
* [`5d365404`](NixOS/nixpkgs@5d36540) beets: add extrafiles plugin
* [`0bbeca2f`](NixOS/nixpkgs@0bbeca2) ocamlPackages.zarith: 1.9 -> 1.10
* [`cc2982b7`](NixOS/nixpkgs@cc2982b) untrunc: update to latest git version
* [`f5a61c26`](NixOS/nixpkgs@f5a61c2) lizardfs: fix build
* [`70b417f5`](NixOS/nixpkgs@70b417f) dconf2nix: 0.0.5 -> 0.0.6
* [`846acc4c`](NixOS/nixpkgs@846acc4) slack: 4.8.0 -> 4.9.1
* [`f000c741`](NixOS/nixpkgs@f000c74) pythonPackages.b2sdk: init at 1.1.4
* [`3c03a982`](NixOS/nixpkgs@3c03a98) duplicity: use new b2sdk python package
* [`7bd19e7a`](NixOS/nixpkgs@7bd19e7) nix-prefetch: fix compatibility with nixUnstable again
* [`731fd9ef`](NixOS/nixpkgs@731fd9e) androidStudioPackages.{dev,canary}: 4.2.0.10 -> 4.2.0.11
* [`5f19b74d`](NixOS/nixpkgs@5f19b74) f3: clean-ups and compile on darwin (NixOS/nixpkgs#98365)
* [`d4eed013`](NixOS/nixpkgs@d4eed01) gitlab-runner: 13.3.1 -> 13.4.0 (NixOS/nixpkgs#98377)
* [`ac49c2f7`](NixOS/nixpkgs@ac49c2f) freeoffice: 976 -> 978
* [`114202e3`](NixOS/nixpkgs@114202e) thunderbird-78: fix NixOS/nixpkgs#97994: broken UI in 78.2.2
* [`d33267c6`](NixOS/nixpkgs@d33267c) thunderbird.meta.maintainers: add myself
* [`517c9755`](NixOS/nixpkgs@517c975) Sylk: 3.8.0 -> 3.8.4 (NixOS/nixpkgs#98392)
* [`8be7347e`](NixOS/nixpkgs@8be7347) pythonPackages.mohawk: init at 1.1.0
* [`a2228f4c`](NixOS/nixpkgs@a2228f4) libversion: fix tests on Darwin (NixOS/nixpkgs#98361)
* [`3b6800c7`](NixOS/nixpkgs@3b6800c) python3Packages.spyder: fix build
* [`9dc65423`](NixOS/nixpkgs@9dc6542) pythonPackages.spyder-kernels: 1.9.3 -> 1.9.4
* [`6e4908a5`](NixOS/nixpkgs@6e4908a) spyder: 4.1.4 -> 4.1.5
* [`8403806a`](NixOS/nixpkgs@8403806) python3Packages.rising: init at 0.2.0post0
* [`4f03644c`](NixOS/nixpkgs@4f03644) spotify: support --force-device-scale-factor
* [`0e0dc554`](NixOS/nixpkgs@0e0dc55) rust-analyzer: 2020-08-24 -> 2020-09-21
* [`21a6f3aa`](NixOS/nixpkgs@21a6f3a) rust-analyzer: fix build
* [`d45ea33a`](NixOS/nixpkgs@d45ea33) pythonPackages.pecan: 1.3.3 -> 1.4.0
* [`143289ad`](NixOS/nixpkgs@143289a) pythonPackages.WSME: fix build
* [`e883c657`](NixOS/nixpkgs@e883c65) softmaker-office: remove /bin/ls intercept
* [`860bc40a`](NixOS/nixpkgs@860bc40) sundials: add KLU support
* [`4e888fb7`](NixOS/nixpkgs@4e888fb) python2Packages.scikits-odes: disable
* [`85c07678`](NixOS/nixpkgs@85c0767) isso: build from master
* [`cd1b7693`](NixOS/nixpkgs@cd1b769) pythonPackages.xlib: 0.25 -> 0.28
* [`b0edb341`](NixOS/nixpkgs@b0edb34) buildbot: 2.8.2 -> 2.8.4
* [`e2283652`](NixOS/nixpkgs@e228365) pythonPackages.yq: repackage as library, convert to application, fix tests
* [`1a44ef90`](NixOS/nixpkgs@1a44ef9) pythonPackages.yq: 2.10.1 -> 2.11.0
* [`40a58cc6`](NixOS/nixpkgs@40a58cc) python3.pkgs.yq: make stdin a tty for tests
* [`4990bd11`](NixOS/nixpkgs@4990bd1) Dino: Enable on macOS/Darwin
* [`f4cc8c18`](NixOS/nixpkgs@f4cc8c1) clightning: 0.9.0-1 -> 0.9.1
* [`243f56fb`](NixOS/nixpkgs@243f56f) python3.pkgs.bokeh: 2.1.1 -> 2.2.1
* [`4e1f8e4e`](NixOS/nixpkgs@4e1f8e4) python3Packages.xarray: 0.16.0 -> 0.16.1
* [`5a71d961`](NixOS/nixpkgs@5a71d96) firecracker: 0.21.1 -> 0.22.0
* [`647be9d0`](NixOS/nixpkgs@647be9d) age: 1.0.0-beta4 -> 1.0.0-beta5
* [`b06070c2`](NixOS/nixpkgs@b06070c) weather: enable on darwin
* [`43350332`](NixOS/nixpkgs@4335033) Update pkgs/applications/networking/instant-messengers/dino/default.nix
* [`b950a85b`](NixOS/nixpkgs@b950a85) luakit: 2.1 -> 2.2
* [`b531e659`](NixOS/nixpkgs@b531e65) fd: remove unnecessary reference to $src
* [`1d8fae0b`](NixOS/nixpkgs@1d8fae0) mpv: install mpv_identify.sh
* [`1399f780`](NixOS/nixpkgs@1399f78) ripgrep: remove unnecessary reference to $src
* [`a3323d49`](NixOS/nixpkgs@a3323d4) comic-neue: 2.3 -> 2.5
* [`4c4217bd`](NixOS/nixpkgs@4c4217b) cimg: 2.9.1 -> 2.9.2
* [`271b9ac9`](NixOS/nixpkgs@271b9ac) weather: reformat derivation
* [`c4cb4c22`](NixOS/nixpkgs@c4cb4c2) Declare several versions of OCamlformat (NixOS/nixpkgs#88799)
* [`47997634`](NixOS/nixpkgs@4799763) duf: init at 0.1.0 (NixOS/nixpkgs#98396)
* [`534ad685`](NixOS/nixpkgs@534ad68) viu: 1.0 -> 1.1
* [`a762bbf7`](NixOS/nixpkgs@a762bbf) pythonPackages.http-parser: init at 0.9.0
* [`b3ca5036`](NixOS/nixpkgs@b3ca503) pythonPackages.mocket: 3.8.9 -> 3.9.0
* [`9fde97d8`](NixOS/nixpkgs@9fde97d) python3Packages.pyxnat: init at 1.3
* [`03ea51a8`](NixOS/nixpkgs@03ea51a) python3Packages.dipy: 1.1.1 -> 1.2.0
* [`a4c2512d`](NixOS/nixpkgs@a4c2512) vimPlugins.hoon-vim: init at 2020-02-19
* [`943fa12e`](NixOS/nixpkgs@943fa12) hop: fix build
* [`06098c76`](NixOS/nixpkgs@06098c7) bigloo: 4.1a-2 → 4.3h; hop: 2.5.1 → 3.3.0
* [`f29f67bd`](NixOS/nixpkgs@f29f67b) Removing myself from maintainers list of blockchains
* [`ec92ffc5`](NixOS/nixpkgs@ec92ffc) orocos-kdl: init at 1.4.0
* [`83162ab3`](NixOS/nixpkgs@83162ab) pythonPackages.pykdl: init at 1.4.0
* [`23370afc`](NixOS/nixpkgs@23370af) curlie: 1.3.1 -> 1.5.4
* [`d1a27a5f`](NixOS/nixpkgs@d1a27a5) chromium: 85.0.4183.102 -> 85.0.4183.121
* [`e2926577`](NixOS/nixpkgs@e292657) perl-cross: fix . being included in INC
* [`bd4805b6`](NixOS/nixpkgs@bd4805b) pythonPackages.django: 2.2.15 -> 2.2.16
* [`11c36334`](NixOS/nixpkgs@11c3633) vscode-extensions.vadimcn.vscode-lldb: init at 1.5.3
* [`bc2e4628`](NixOS/nixpkgs@bc2e462) maestral-gui: Fix Qt by using libsForQt5
* [`8463f5c9`](NixOS/nixpkgs@8463f5c) pythonPackages.dropbox: 10.3.1 -> 10.4.1
* [`08ab7f91`](NixOS/nixpkgs@08ab7f9) pythonPackages.dbus-next: init at 0.1.4
* [`b3e1fd55`](NixOS/nixpkgs@b3e1fd5) pythonPackages.maestral: 1.1.0 -> 1.2.0
* [`6dad7ddb`](NixOS/nixpkgs@6dad7dd) maestral-qt: 1.1.0 -> 1.2.0
* [`5f31ac17`](NixOS/nixpkgs@5f31ac1) ubidump: init at unstable-2019-09-11
* [`a775c939`](NixOS/nixpkgs@a775c93) ocamlPackages.zed: 2.0.3 → 3.1.0
* [`2904bef2`](NixOS/nixpkgs@2904bef) python3Packages.csvw: init at 1.8.0
* [`8fca119c`](NixOS/nixpkgs@8fca119) python3Packages.clldutils: init at 3.5.2
* [`0f509906`](NixOS/nixpkgs@0f50990) python3Packages.segments: init at 2.1.3
* [`53c78da3`](NixOS/nixpkgs@53c78da) weather: cleanups
* [`e05feccc`](NixOS/nixpkgs@e05fecc) weather: enable on all Unix platforms
* [`7abb57c7`](NixOS/nixpkgs@7abb57c) fix passing qt5 version to pythonInterpreters
* [`68561ccf`](NixOS/nixpkgs@68561cc) obs-v4l2sink: update to latest git 'master' version
* [`a1f8e0b4`](NixOS/nixpkgs@a1f8e0b) coqPackages.metalib: 20170713 → 20200527
* [`7c411b66`](NixOS/nixpkgs@7c411b6) linux-rt_5_4: 5.4.61-rt37 -> 5.4.66-rt38
* [`4d9e2972`](NixOS/nixpkgs@4d9e297) zoom-us: 5.2.458699.0906 -> 5.3.465578.0920
* [`382f7ce9`](NixOS/nixpkgs@382f7ce) buildah: 1.16.1 -> 1.16.2
* [`5c27f0dd`](NixOS/nixpkgs@5c27f0d) podman: 2.0.6 -> 2.1.0
* [`2e30e228`](NixOS/nixpkgs@2e30e22) bettercap: build on darwin
* [`ff64cb72`](NixOS/nixpkgs@ff64cb7) amass: 3.10.1 -> 3.10.3
* [`36ad05e8`](NixOS/nixpkgs@36ad05e) vscode-extensions.haskell.haskell: init at 1.1.0 (NixOS/nixpkgs#98251)
* [`fccf069e`](NixOS/nixpkgs@fccf069) python3Packages.transformers: 3.1.0 -> 3.2.0
github-actions bot added a commit to pbogdan/nix-nerd-fonts that referenced this pull request Sep 27, 2020
## Motivation

Dependencies should be up to date.

## Changelog for unstable:
Commits: [NixOS/nixpkgs@1179840f...daaa0e33](NixOS/nixpkgs@1179840...daaa0e3)

* [`0e6477d6`](NixOS/nixpkgs@0e6477d) vscodium: 1.48.2 -> 1.49.1
* [`7ea5b08c`](NixOS/nixpkgs@7ea5b08) gnat: fix build
* [`e3796bc8`](NixOS/nixpkgs@e3796bc) shadowsocks-rust: 1.8.17 -> 1.8.18
* [`670fe111`](NixOS/nixpkgs@670fe11) celluloid: 0.19 -> 0.20
* [`d61c16cd`](NixOS/nixpkgs@d61c16c) sslyze: fix build
* [`f8473b1d`](NixOS/nixpkgs@f8473b1) openssh_hpn: fix source
* [`e11a4875`](NixOS/nixpkgs@e11a487) josm: use latest jdk
* [`aabe6e23`](NixOS/nixpkgs@aabe6e2) dbeaver: use latest jdk
* [`8ba71cef`](NixOS/nixpkgs@8ba71ce) mediathekview: use latest jre
* [`eb61d33a`](NixOS/nixpkgs@eb61d33) maintainers: remove joncojonathan
* [`328fa738`](NixOS/nixpkgs@328fa73) deja-dup: remove joncojonathan as maintainer
* [`01fed034`](NixOS/nixpkgs@01fed03) closurecompiler: use latest jdk
* [`9481828b`](NixOS/nixpkgs@9481828) emscripten: use latest jdk
* [`ff078a7e`](NixOS/nixpkgs@ff078a7) keepass: remove joncojonathan as maintainer
* [`84a0da26`](NixOS/nixpkgs@84a0da2) runelite: use latest jdk
* [`609e3aa5`](NixOS/nixpkgs@609e3aa) gramps: remove joncojonathan as maintainer
* [`5e46e2a7`](NixOS/nixpkgs@5e46e2a) awstats: use latest jdk
* [`3426068a`](NixOS/nixpkgs@3426068) arduino: use latest jdk
* [`effd6aa5`](NixOS/nixpkgs@effd6aa) gpsprune: use latest jdk
* [`ef4cbbab`](NixOS/nixpkgs@ef4cbba) clojure: use latest jdk
* [`e13e02f3`](NixOS/nixpkgs@e13e02f) jedit: use latest jdk
* [`907fd8d6`](NixOS/nixpkgs@907fd8d) youtube-dl: 2020.09.14 -> 2020.09.20
* [`80a6743c`](NixOS/nixpkgs@80a6743) opencascade: enable macOS build and add features
* [`e5869f99`](NixOS/nixpkgs@e5869f9) gitAndTools.git-imerge: 1.1.0 -> 1.2.0
* [`4fc8c509`](NixOS/nixpkgs@4fc8c50) platforms: add bigEndian and littleEndian
* [`40722346`](NixOS/nixpkgs@4072234) avy: 2017.10.16 -> 2019.05.01
* [`2f934a96`](NixOS/nixpkgs@2f934a9) qcad: fix library browser
* [`0b3ffb51`](NixOS/nixpkgs@0b3ffb5) cawbird: 1.1.0 -> 1.2.1
* [`05f99442`](NixOS/nixpkgs@05f9944) pythonPackages.glom: fix tests
* [`b103ddb9`](NixOS/nixpkgs@b103ddb) pythonPackages.mock-open: 1.3.1 -> 1.3.2
* [`355d255d`](NixOS/nixpkgs@355d255) pythonPackages.mock-open: 1.3.2 -> 1.4.0
* [`a28068a9`](NixOS/nixpkgs@a28068a) svgbob: fix build
* [`a4261572`](NixOS/nixpkgs@a426157) qcad: replace qt argument
* [`d07100d8`](NixOS/nixpkgs@d07100d) python3Packages.crate: init at 0.24.0
* [`b3178aee`](NixOS/nixpkgs@b3178ae) python.pkgs.agate-sql: fix tests by adding crate to inputs
* [`eb9393a4`](NixOS/nixpkgs@eb9393a) csvkit: 1.0.4 -> 1.0.5
* [`8bf99f67`](NixOS/nixpkgs@8bf99f6) csvkit: fix tests
* [`172f3a19`](NixOS/nixpkgs@172f3a1) lldb_5, lldb_6: add patch for >=python-3.7
* [`09bc8c8d`](NixOS/nixpkgs@09bc8c8) can-isotp: 20180629 -> 20200910
* [`044533c9`](NixOS/nixpkgs@044533c) libndtypes, pythonPackages.ndtypes: unstable-2018-11-27 -> unstable-2019-08-01
* [`dcd6847d`](NixOS/nixpkgs@dcd6847) libxnd, pythonPackages.xnd: unstable-2018-11-27 -> unstable-2019-08-01
* [`eb86bff3`](NixOS/nixpkgs@eb86bff) libgumath, pythonPackages.gumath: unstable-2018-11-27 -> unstable-2019-08-01
* [`43c0499f`](NixOS/nixpkgs@43c0499) python38Packages.shouldbe: disable for python3.8
* [`96e44389`](NixOS/nixpkgs@96e4438) contributing.md: mention rebased or squashed merges
* [`4d4516a0`](NixOS/nixpkgs@4d4516a) gnome-network-displays: init at 0.90.4
* [`9a4468b9`](NixOS/nixpkgs@9a4468b) linux: 5.9-rc4 -> 5.9-rc5
* [`4e435eee`](NixOS/nixpkgs@4e435ee) pythonPackages.cfn-lint: 0.35.0 -> 0.35.1
* [`358cfe91`](NixOS/nixpkgs@358cfe9) gitAndTools.git-machete: 2.15.5 -> 2.15.6
* [`edd8fb37`](NixOS/nixpkgs@edd8fb3) sunvox: fix hash mismatch
* [`fa1272e9`](NixOS/nixpkgs@fa1272e) emacsPackages.libgit: Fix build
* [`8bb5c62a`](NixOS/nixpkgs@8bb5c62) gallery-dl: 1.14.5 -> 1.15.0
* [`56660562`](NixOS/nixpkgs@5666056) vmmlib: fix build
* [`215cfc98`](NixOS/nixpkgs@215cfc9) .editorconfig: add timidity.cfg
* [`c3244181`](NixOS/nixpkgs@c324418) pythonPackages.netaddr: 0.7.19 -> 0.8.0
* [`b8f130e2`](NixOS/nixpkgs@b8f130e) python.pkgs.scikit-optimize: 0.6 -> 0.8.1
* [`4482e5ec`](NixOS/nixpkgs@4482e5e) dotnetenv: editorconfig fixes
* [`d8b5fb33`](NixOS/nixpkgs@d8b5fb3) oh-my-zsh: 2020-09-14 -> 2020-09-20
* [`6543cbf5`](NixOS/nixpkgs@6543cbf) python3Packages.parse: 1.16.0 -> 1.18.0
* [`f690cacb`](NixOS/nixpkgs@f690cac) python3Packages.python-docx: run behave tests
* [`0f34c4eb`](NixOS/nixpkgs@0f34c4e) python3Packages.behave: skip test failing on darwin
* [`781b870c`](NixOS/nixpkgs@781b870) xmlbird: fix build with python 3.8
* [`0b67d9e8`](NixOS/nixpkgs@0b67d9e) birdfont: fix build on non-nixos/debian systems
* [`06975755`](NixOS/nixpkgs@0697575) doc/python: remove trailing whitespace
* [`74c2ed9e`](NixOS/nixpkgs@74c2ed9) nixos/tools/nixos-install: remove trailing whitespace
* [`a4edf4ca`](NixOS/nixpkgs@a4edf4c) perlPackages.HamAPRSFAP: init at 1.21
* [`bf71f459`](NixOS/nixpkgs@bf71f45) liboping: fix build on Darwin
* [`31e54cdd`](NixOS/nixpkgs@31e54cd) firefox: enable pipewire+webrtc for wayland users
* [`efa99abf`](NixOS/nixpkgs@efa99ab) singularity: 3.6.2 -> 3.6.3
* [`85ce3805`](NixOS/nixpkgs@85ce380) terraform-compliance: fix build
* [`c743f4e1`](NixOS/nixpkgs@c743f4e) mruby: 2.1.1 -> 2.1.2
* [`dbdd5d41`](NixOS/nixpkgs@dbdd5d4) maintainer: Add bryanasdev000
* [`8465b484`](NixOS/nixpkgs@8465b48) popeye: init at 0.8.10
* [`142f6d85`](NixOS/nixpkgs@142f6d8) velero: init at 1.5.1
* [`617d5b7f`](NixOS/nixpkgs@617d5b7) velero: remove old heptio-ark package
* [`a4afd525`](NixOS/nixpkgs@a4afd52) prometheus: Unbreak IPv6 listenAddress
* [`4e155d6b`](NixOS/nixpkgs@4e155d6) fontmatrix: 0.6.0 → 0.6.0-qt5 (NixOS/nixpkgs#97800)
* [`c06b0edd`](NixOS/nixpkgs@c06b0ed) ocamlPackages.apron: 0.9.12 → 0.9.13
* [`0996ac6b`](NixOS/nixpkgs@0996ac6) nvtop: Make independent of Nvidia driver version
* [`9ff87334`](NixOS/nixpkgs@9ff8733) maintainers: add charvp
* [`090cc5d6`](NixOS/nixpkgs@090cc5d) bluej: init at 4.2.2
* [`5d365404`](NixOS/nixpkgs@5d36540) beets: add extrafiles plugin
* [`0bbeca2f`](NixOS/nixpkgs@0bbeca2) ocamlPackages.zarith: 1.9 -> 1.10
* [`cc2982b7`](NixOS/nixpkgs@cc2982b) untrunc: update to latest git version
* [`f5a61c26`](NixOS/nixpkgs@f5a61c2) lizardfs: fix build
* [`70b417f5`](NixOS/nixpkgs@70b417f) dconf2nix: 0.0.5 -> 0.0.6
* [`846acc4c`](NixOS/nixpkgs@846acc4) slack: 4.8.0 -> 4.9.1
* [`f000c741`](NixOS/nixpkgs@f000c74) pythonPackages.b2sdk: init at 1.1.4
* [`3c03a982`](NixOS/nixpkgs@3c03a98) duplicity: use new b2sdk python package
* [`7bd19e7a`](NixOS/nixpkgs@7bd19e7) nix-prefetch: fix compatibility with nixUnstable again
* [`731fd9ef`](NixOS/nixpkgs@731fd9e) androidStudioPackages.{dev,canary}: 4.2.0.10 -> 4.2.0.11
* [`5f19b74d`](NixOS/nixpkgs@5f19b74) f3: clean-ups and compile on darwin (NixOS/nixpkgs#98365)
* [`d4eed013`](NixOS/nixpkgs@d4eed01) gitlab-runner: 13.3.1 -> 13.4.0 (NixOS/nixpkgs#98377)
* [`ac49c2f7`](NixOS/nixpkgs@ac49c2f) freeoffice: 976 -> 978
* [`114202e3`](NixOS/nixpkgs@114202e) thunderbird-78: fix NixOS/nixpkgs#97994: broken UI in 78.2.2
* [`d33267c6`](NixOS/nixpkgs@d33267c) thunderbird.meta.maintainers: add myself
* [`517c9755`](NixOS/nixpkgs@517c975) Sylk: 3.8.0 -> 3.8.4 (NixOS/nixpkgs#98392)
* [`8be7347e`](NixOS/nixpkgs@8be7347) pythonPackages.mohawk: init at 1.1.0
* [`a2228f4c`](NixOS/nixpkgs@a2228f4) libversion: fix tests on Darwin (NixOS/nixpkgs#98361)
* [`3b6800c7`](NixOS/nixpkgs@3b6800c) python3Packages.spyder: fix build
* [`9dc65423`](NixOS/nixpkgs@9dc6542) pythonPackages.spyder-kernels: 1.9.3 -> 1.9.4
* [`6e4908a5`](NixOS/nixpkgs@6e4908a) spyder: 4.1.4 -> 4.1.5
* [`8403806a`](NixOS/nixpkgs@8403806) python3Packages.rising: init at 0.2.0post0
* [`4f03644c`](NixOS/nixpkgs@4f03644) spotify: support --force-device-scale-factor
* [`0e0dc554`](NixOS/nixpkgs@0e0dc55) rust-analyzer: 2020-08-24 -> 2020-09-21
* [`21a6f3aa`](NixOS/nixpkgs@21a6f3a) rust-analyzer: fix build
* [`d45ea33a`](NixOS/nixpkgs@d45ea33) pythonPackages.pecan: 1.3.3 -> 1.4.0
* [`143289ad`](NixOS/nixpkgs@143289a) pythonPackages.WSME: fix build
* [`e883c657`](NixOS/nixpkgs@e883c65) softmaker-office: remove /bin/ls intercept
* [`860bc40a`](NixOS/nixpkgs@860bc40) sundials: add KLU support
* [`4e888fb7`](NixOS/nixpkgs@4e888fb) python2Packages.scikits-odes: disable
* [`85c07678`](NixOS/nixpkgs@85c0767) isso: build from master
* [`cd1b7693`](NixOS/nixpkgs@cd1b769) pythonPackages.xlib: 0.25 -> 0.28
* [`b0edb341`](NixOS/nixpkgs@b0edb34) buildbot: 2.8.2 -> 2.8.4
* [`e2283652`](NixOS/nixpkgs@e228365) pythonPackages.yq: repackage as library, convert to application, fix tests
* [`1a44ef90`](NixOS/nixpkgs@1a44ef9) pythonPackages.yq: 2.10.1 -> 2.11.0
* [`40a58cc6`](NixOS/nixpkgs@40a58cc) python3.pkgs.yq: make stdin a tty for tests
* [`4990bd11`](NixOS/nixpkgs@4990bd1) Dino: Enable on macOS/Darwin
* [`f4cc8c18`](NixOS/nixpkgs@f4cc8c1) clightning: 0.9.0-1 -> 0.9.1
* [`243f56fb`](NixOS/nixpkgs@243f56f) python3.pkgs.bokeh: 2.1.1 -> 2.2.1
* [`4e1f8e4e`](NixOS/nixpkgs@4e1f8e4) python3Packages.xarray: 0.16.0 -> 0.16.1
* [`5a71d961`](NixOS/nixpkgs@5a71d96) firecracker: 0.21.1 -> 0.22.0
* [`647be9d0`](NixOS/nixpkgs@647be9d) age: 1.0.0-beta4 -> 1.0.0-beta5
* [`b06070c2`](NixOS/nixpkgs@b06070c) weather: enable on darwin
* [`43350332`](NixOS/nixpkgs@4335033) Update pkgs/applications/networking/instant-messengers/dino/default.nix
* [`b950a85b`](NixOS/nixpkgs@b950a85) luakit: 2.1 -> 2.2
* [`b531e659`](NixOS/nixpkgs@b531e65) fd: remove unnecessary reference to $src
* [`1d8fae0b`](NixOS/nixpkgs@1d8fae0) mpv: install mpv_identify.sh
* [`1399f780`](NixOS/nixpkgs@1399f78) ripgrep: remove unnecessary reference to $src
* [`a3323d49`](NixOS/nixpkgs@a3323d4) comic-neue: 2.3 -> 2.5
* [`4c4217bd`](NixOS/nixpkgs@4c4217b) cimg: 2.9.1 -> 2.9.2
* [`271b9ac9`](NixOS/nixpkgs@271b9ac) weather: reformat derivation
* [`c4cb4c22`](NixOS/nixpkgs@c4cb4c2) Declare several versions of OCamlformat (NixOS/nixpkgs#88799)
* [`47997634`](NixOS/nixpkgs@4799763) duf: init at 0.1.0 (NixOS/nixpkgs#98396)
* [`534ad685`](NixOS/nixpkgs@534ad68) viu: 1.0 -> 1.1
* [`a762bbf7`](NixOS/nixpkgs@a762bbf) pythonPackages.http-parser: init at 0.9.0
* [`b3ca5036`](NixOS/nixpkgs@b3ca503) pythonPackages.mocket: 3.8.9 -> 3.9.0
* [`9fde97d8`](NixOS/nixpkgs@9fde97d) python3Packages.pyxnat: init at 1.3
* [`03ea51a8`](NixOS/nixpkgs@03ea51a) python3Packages.dipy: 1.1.1 -> 1.2.0
* [`a4c2512d`](NixOS/nixpkgs@a4c2512) vimPlugins.hoon-vim: init at 2020-02-19
* [`943fa12e`](NixOS/nixpkgs@943fa12) hop: fix build
* [`06098c76`](NixOS/nixpkgs@06098c7) bigloo: 4.1a-2 → 4.3h; hop: 2.5.1 → 3.3.0
* [`f29f67bd`](NixOS/nixpkgs@f29f67b) Removing myself from maintainers list of blockchains
* [`ec92ffc5`](NixOS/nixpkgs@ec92ffc) orocos-kdl: init at 1.4.0
* [`83162ab3`](NixOS/nixpkgs@83162ab) pythonPackages.pykdl: init at 1.4.0
* [`23370afc`](NixOS/nixpkgs@23370af) curlie: 1.3.1 -> 1.5.4
* [`d1a27a5f`](NixOS/nixpkgs@d1a27a5) chromium: 85.0.4183.102 -> 85.0.4183.121
* [`e2926577`](NixOS/nixpkgs@e292657) perl-cross: fix . being included in INC
* [`bd4805b6`](NixOS/nixpkgs@bd4805b) pythonPackages.django: 2.2.15 -> 2.2.16
* [`11c36334`](NixOS/nixpkgs@11c3633) vscode-extensions.vadimcn.vscode-lldb: init at 1.5.3
* [`bc2e4628`](NixOS/nixpkgs@bc2e462) maestral-gui: Fix Qt by using libsForQt5
* [`8463f5c9`](NixOS/nixpkgs@8463f5c) pythonPackages.dropbox: 10.3.1 -> 10.4.1
* [`08ab7f91`](NixOS/nixpkgs@08ab7f9) pythonPackages.dbus-next: init at 0.1.4
* [`b3e1fd55`](NixOS/nixpkgs@b3e1fd5) pythonPackages.maestral: 1.1.0 -> 1.2.0
* [`6dad7ddb`](NixOS/nixpkgs@6dad7dd) maestral-qt: 1.1.0 -> 1.2.0
* [`5f31ac17`](NixOS/nixpkgs@5f31ac1) ubidump: init at unstable-2019-09-11
* [`a775c939`](NixOS/nixpkgs@a775c93) ocamlPackages.zed: 2.0.3 → 3.1.0
* [`2904bef2`](NixOS/nixpkgs@2904bef) python3Packages.csvw: init at 1.8.0
* [`8fca119c`](NixOS/nixpkgs@8fca119) python3Packages.clldutils: init at 3.5.2
* [`0f509906`](NixOS/nixpkgs@0f50990) python3Packages.segments: init at 2.1.3
* [`53c78da3`](NixOS/nixpkgs@53c78da) weather: cleanups
* [`e05feccc`](NixOS/nixpkgs@e05fecc) weather: enable on all Unix platforms
* [`7abb57c7`](NixOS/nixpkgs@7abb57c) fix passing qt5 version to pythonInterpreters
* [`68561ccf`](NixOS/nixpkgs@68561cc) obs-v4l2sink: update to latest git 'master' version
* [`a1f8e0b4`](NixOS/nixpkgs@a1f8e0b) coqPackages.metalib: 20170713 → 20200527
* [`7c411b66`](NixOS/nixpkgs@7c411b6) linux-rt_5_4: 5.4.61-rt37 -> 5.4.66-rt38
* [`4d9e2972`](NixOS/nixpkgs@4d9e297) zoom-us: 5.2.458699.0906 -> 5.3.465578.0920
* [`382f7ce9`](NixOS/nixpkgs@382f7ce) buildah: 1.16.1 -> 1.16.2
* [`5c27f0dd`](NixOS/nixpkgs@5c27f0d) podman: 2.0.6 -> 2.1.0
* [`2e30e228`](NixOS/nixpkgs@2e30e22) bettercap: build on darwin
* [`ff64cb72`](NixOS/nixpkgs@ff64cb7) amass: 3.10.1 -> 3.10.3
* [`36ad05e8`](NixOS/nixpkgs@36ad05e) vscode-extensions.haskell.haskell: init at 1.1.0 (NixOS/nixpkgs#98251)
* [`fccf069e`](NixOS/nixpkgs@fccf069) python3Packages.transformers: 3.1.0 -> 3.2.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants