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

mat2: init at 0.12.0 #116005

Merged
merged 3 commits into from Mar 18, 2021
Merged

mat2: init at 0.12.0 #116005

merged 3 commits into from Mar 18, 2021

Conversation

dotlambda
Copy link
Member

@dotlambda dotlambda commented Mar 11, 2021

Motivation for this change

fixes #115991
closes #112413

closes #112413

Differences to #112413:

Things done
  • 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.

@nbraud Would you like to be added to meta.maintainers?

@fogti
Copy link
Contributor

fogti commented Mar 11, 2021

The help text of the executable should not contain .mat2-wrapped, but mat2 as usual. This should be possible by patching the mat2 main script, and insert prog="mat2" into the arguments of argparse.ArgumentParser, according to takluyver/pynsist#92

@r-rmcgibbo
Copy link

r-rmcgibbo commented Mar 12, 2021

Result of nixpkgs-review pr 116005 at 71a31efd run on x86_64-linux 1

2 packages built successfully:

Result of nixpkgs-review pr 116005 at 71a31efd run on aarch64-linux 1

2 packages built successfully:

@fogti
Copy link
Contributor

fogti commented Mar 12, 2021

In _get_bwrap_args (libmat2/bubblewrap.py), /etc/ld.so.cache is mounted into the bubblewrap call. This should be removed, too, as it is unneeded, because we hardcoded all executables we call to nix store paths, which contains executables which don't use /etc/ld.so.cache.

@fogti
Copy link
Contributor

fogti commented Mar 12, 2021

The imports functools and shutil can be removed from the following files: libmat2/exiftool.py, libmat2/video.py.

@fogti
Copy link
Contributor

fogti commented Mar 12, 2021

I don't think this currently installs the dolphin and nautilus extensions. This isn't strictly needed, but it would be a good idea to create an additional derivation for the nautilus extension, as it requires additional python modules, and is pretty independent from the rest (it only depends on libmat2, GTK, GDK, Nautilus). The dolphin extension is far easier, as it is just a .desktop file. imo this could also be placed in another derivation, which installs just the .desktop file, so that the extensions can be added and removed without needing to rebuild the main package.

Comment on lines 1 to 20
{ lib
, buildPythonPackage
, python
, pythonOlder
, fetchFromGitLab
, substituteAll
, bubblewrap
, exiftool
, ffmpeg
, mime-types
, wrapGAppsHook
, gdk-pixbuf
, gobject-introspection
, librsvg
, poppler_gi
, mutagen
, pygobject3
, pycairo
}:
Copy link
Contributor

Choose a reason for hiding this comment

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

This argument list should be sorted.

Copy link
Member

Choose a reason for hiding this comment

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

It would be nice but is not strictly required.

Copy link
Member Author

Choose a reason for hiding this comment

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

They are more or less ordered by appearance inthe expression.

@fogti
Copy link
Contributor

fogti commented Mar 12, 2021

The tests hang at Executing pythonImportsCheckPhase.

@dotlambda
Copy link
Member Author

The tests hang at Executing pythonImportsCheckPhase.

works for me ;-)

@dotlambda dotlambda force-pushed the mat2-init branch 2 times, most recently from 0e5f8aa to 60df71c Compare March 12, 2021 12:24
@dotlambda
Copy link
Member Author

I don't think this currently installs the dolphin and nautilus extensions.

Now at least the dolphin one is installed.


postPatch = ''
substituteInPlace dolphin/mat2.desktop \
--replace "@mat2@" "$out/bin/mat2" \
Copy link
Member Author

Choose a reason for hiding this comment

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

I guess this can't be done using placeholder "out" within substituteAll?

Copy link
Contributor

Choose a reason for hiding this comment

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

In sections where you can use the $out variable, you shouldn't use placeholder "out" at all.

@dotlambda
Copy link
Member Author

I made the dolphin integration optional as it increases the closure size by about 500MiB (50%).

I also tried getting the nautilus extension to work by installing natulis as well as nautilus-python using nix-env and putting the script from nautilus/mat2.py in $out/share/nautilus-python/extensions. But nautilus didn't even print any error messages. I have no clue how nautilus-python works. Maybe someone from @NixOS/gnome can help?

@dotlambda

This comment has been minimized.

@jtojnar
Copy link
Contributor

jtojnar commented Mar 12, 2021

IIRC, You need NAUTILUS_EXTENSION_DIR environment variable set up for Nautilus to find nautilus-python. GNOME NixOS module sets that variable in a way that finds extensions added to environment.systemPackages:

environment.sessionVariables.NAUTILUS_EXTENSION_DIR = "${config.system.path}/lib/nautilus/extensions-3.0";

Then you also need to install the python scripts to a directory accessible from $XDG_DATA_DIRS, again environment.systemPackages will work:

environment.pathsToLink = [
"/share/nautilus-python/extensions"
];

But if you have ~/.nix-profile/share in XDG_DATA_DIRS, nix-env should work as well.

Nautilus, Gdk and Gtk typelibs should be inherited from Nautilus so no need to add these dependencies but libmat2 might be problematic. If nautilus-python imports the script, you might need wrapPython:

https://github.com/NixOS/nixpkgs/blob/e5deabe68b7f85467d2f8519efe1daabbd9a86b5/pkgs/development/interpreters/python/wrap-python.nix

@dotlambda
Copy link
Member Author

dotlambda commented Mar 13, 2021

I don't have the motivation to test the nautilus extension. If someone using GNOME wants to do that, go ahead.
So from my point of view, this is done.

@ofborg eval

@dotlambda dotlambda force-pushed the mat2-init branch 2 times, most recently from 3864b9f to 90fd417 Compare March 13, 2021 15:07
@dotlambda
Copy link
Member Author

Does anyone want to work on Nautilus support? Otherwise I'll merge this as is.

@fogti
Copy link
Contributor

fogti commented Mar 14, 2021

I don't require Nautilus support, thus I'm fine with it.

@dotlambda
Copy link
Member Author

dotlambda commented Mar 14, 2021

I tried setting NAUTILUS_EXTENSION_DIR=~/.nix-profile/lib/nautilus/extensions-3.0 but get

$ nautilus
ImportError: could not import gobject (error was: ModuleNotFoundError("No module named 'gi'"))

(org.gnome.Nautilus:5580): Nautilus-Python-WARNING **: 12:28:13.527: pygobject initialization failed

(org.gnome.Nautilus:5580): Nautilus-Python-WARNING **: 12:28:13.527: nautilus_python_init_python failed

That makes me suspect that nautilus-python is just broken.
cc @worldofpeace @etu

install -Dm 444 doc/mat2.1 -t "$out/share/man/man1"
install -Dm 444 nautilus/mat2.py -t "$out/share/nautilus-python/extensions"
buildPythonPath "$out $pythonPath"
patchPythonScript "$out/share/nautilus-python/extensions/mat2.py"
Copy link
Member Author

Choose a reason for hiding this comment

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

@FRidh Is there a better way to patch sys.path without creating a bash wrapper?

I couldn't get nautilus-python to work:

    $ nautilus
    ImportError: could not import gobject (error was: ModuleNotFoundError("No module named 'gi'"))

    (org.gnome.Nautilus:5580): Nautilus-Python-WARNING **: 12:28:13.527: pygobject initialization failed

    (org.gnome.Nautilus:5580): Nautilus-Python-WARNING **: 12:28:13.527: nautilus_python_init_python failed
@dotlambda
Copy link
Member Author

Does anything remain to be done before this is merged?

Copy link
Contributor

@fogti fogti left a comment

Choose a reason for hiding this comment

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

LGTM

@SuperSandro2000
Copy link
Member

This is a semi-automatic executed nixpkgs-review with nixpkgs-review-checks extension. It is checked by a human on a best effort basis and does not build all packages (e.g. lumo, tensorflow or pytorch).
If you have any questions or problems please reach out to SuperSandro2000 on IRC.

Result of nixpkgs-review pr 116005 run on x86_64-linux 1

3 packages built:
  • mat2 (python38Packages.mat2)
  • metadata-cleaner
  • python39Packages.mat2

@SuperSandro2000 SuperSandro2000 merged commit a8c262f into NixOS:master Mar 18, 2021
@dotlambda dotlambda deleted the mat2-init branch March 18, 2021 16:01
xorilog added a commit to xorilog/home that referenced this pull request Mar 24, 2021
NUR: 777e1e28ed519a4b358f9196fc46c08845303763 to ffcab46972b669ac2764595fbf971b52fe33475f
* [`fd06ae18`](https://github.com/nix-community/NUR/commit/fd06ae181337410ccc5b667ccbac723ffc628c1d) add p3psi-nur repository
* [`9ba7676f`](https://github.com/nix-community/NUR/commit/9ba7676f47acff76aad2d7b789d835bf0a3c0d79) automatic update
* [`824f519f`](https://github.com/nix-community/NUR/commit/824f519fb49af0d047eaee11fa1888f1b3d5d609) automatic update
* [`e0dbdf20`](https://github.com/nix-community/NUR/commit/e0dbdf20005b6e1f4f405d826af67b64c952bd57) automatic update
* [`61bb08b1`](https://github.com/nix-community/NUR/commit/61bb08b172d5c3fe1a0e60be94410b569acb3ea6) automatic update
* [`9f4d8188`](https://github.com/nix-community/NUR/commit/9f4d8188538643e4c1f35c671a890ad613abb1d3) automatic update
* [`2fb5231d`](https://github.com/nix-community/NUR/commit/2fb5231d1544494dd205164a805c7d50237e7a62) automatic update
* [`2b47f843`](https://github.com/nix-community/NUR/commit/2b47f84384b0b1ae209befa38c90e5f8221a9b7e) automatic update
* [`e70b611e`](https://github.com/nix-community/NUR/commit/e70b611ec4a2b7bf34e28f11249cd5586e45f619) automatic update
* [`00c365c0`](https://github.com/nix-community/NUR/commit/00c365c0aee477c42275632f3c4b76523b51d970) automatic update
* [`46b76961`](https://github.com/nix-community/NUR/commit/46b7696114ab870b326db6216be696ba8ec44055) automatic update
* [`2c06a36c`](https://github.com/nix-community/NUR/commit/2c06a36c644ee8fa6bdcbac81dfef3196726e8e4) automatic update
* [`043db1eb`](https://github.com/nix-community/NUR/commit/043db1eb308a55691db20b40da46db623f4ea6b2) automatic update
* [`d4e78265`](https://github.com/nix-community/NUR/commit/d4e7826532cfbb53caad72d6fb1b2d4674cdb300) automatic update
* [`5cbf8da6`](https://github.com/nix-community/NUR/commit/5cbf8da64315c1e815460ee8f5b9275a1c1edb59) automatic update
* [`421f155b`](https://github.com/nix-community/NUR/commit/421f155b3e42257207446fa7b3687f460f93fdec) automatic update
* [`00873102`](https://github.com/nix-community/NUR/commit/008731025cabac3f83697315c6668549f425809c) add dmayle repository
* [`e06ca03a`](https://github.com/nix-community/NUR/commit/e06ca03a5cba0edd437a9ed5e062728e4a6404f4) automatic update
* [`82f03fdf`](https://github.com/nix-community/NUR/commit/82f03fdf00fd49050dfe9e96658a88f5b9a5564d) automatic update
* [`85e5b43f`](https://github.com/nix-community/NUR/commit/85e5b43fef62c7ce8286c3abc7258db213541c74) automatic update
* [`6e767334`](https://github.com/nix-community/NUR/commit/6e7673347e5718987a17cd4db7138329d32fd4a4) automatic update
* [`d8fa77df`](https://github.com/nix-community/NUR/commit/d8fa77df475ae358cc86a0ffb68e3e366efd28dc) automatic update
* [`491c896c`](https://github.com/nix-community/NUR/commit/491c896c4dbc907ae7248fbd394e10ab05080311) automatic update
* [`fd335d31`](https://github.com/nix-community/NUR/commit/fd335d31367c362e9782a86b2b37dd3fd55bdf56) Merge pull request nix-community/NUR#340 from dmayle/add_dmayle_repo
* [`a95aeb23`](https://github.com/nix-community/NUR/commit/a95aeb23c21fb0301301a1768a28510fce652b8f) Merge pull request nix-community/NUR#333 from p3psi-boo/master
* [`3b87424e`](https://github.com/nix-community/NUR/commit/3b87424e36c75782d335c49467ba8eb56392db98) automatic update
* [`c8f181c9`](https://github.com/nix-community/NUR/commit/c8f181c97e456f6eb4e484e3ad6a130030b9d5ab) automatic update
* [`aeef9df8`](https://github.com/nix-community/NUR/commit/aeef9df8a6bf192d79246ce760216301a4832785) automatic update
* [`cf357ae3`](https://github.com/nix-community/NUR/commit/cf357ae30167d8b225d64e83236195f928561cec) automatic update
* [`befa747e`](https://github.com/nix-community/NUR/commit/befa747ee53c81a8bc954a41b5f2209970dc3a47) automatic update
* [`b828b984`](https://github.com/nix-community/NUR/commit/b828b9842bee807196738ead55f8c68db5047c55) automatic update
* [`6a9bcd35`](https://github.com/nix-community/NUR/commit/6a9bcd3547f1fa6da8bd9419502674f9cbdbca4e) automatic update
* [`14407de0`](https://github.com/nix-community/NUR/commit/14407de04a2ad80126e98b6c2630d383f6e384bd) automatic update
* [`595f5b00`](https://github.com/nix-community/NUR/commit/595f5b001c8babf8ff597cb65b6b1bccc0f716de) automatic update
* [`0cc6a8fa`](https://github.com/nix-community/NUR/commit/0cc6a8fa409ed4108db75578c41da675afcdc360) automatic update
* [`c37f69f3`](https://github.com/nix-community/NUR/commit/c37f69f3ceb45c94ae590b7953d55c699ff0d1b8) automatic update
* [`2a86aa71`](https://github.com/nix-community/NUR/commit/2a86aa71af95823c706db5370d94ba9628a3d839) automatic update
* [`3da0df56`](https://github.com/nix-community/NUR/commit/3da0df5669d3d8b3ec4b6061da0d8172772d83a1) automatic update
* [`46f6e5cc`](https://github.com/nix-community/NUR/commit/46f6e5ccee01fd62fa927afb83be732ef48670e6) automatic update
* [`aa36d0c4`](https://github.com/nix-community/NUR/commit/aa36d0c414bfac242188353d266c0c97d52bcb1d) add uleenucks repository
* [`0e1b0809`](https://github.com/nix-community/NUR/commit/0e1b0809eade216155be633812ca944a256b3565) automatic update
* [`cc3e58f7`](https://github.com/nix-community/NUR/commit/cc3e58f75f1901f205493b169d4aef69108b5ce4) automatic update
* [`207f83ff`](https://github.com/nix-community/NUR/commit/207f83ffe84711bf60bf3d9cad379aedb5f85da3) automatic update
* [`3fb060ce`](https://github.com/nix-community/NUR/commit/3fb060ce3e3a0337f0d708080add4173ba5db478) Merge pull request nix-community/NUR#341 from uleenucks/master
* [`8681370c`](https://github.com/nix-community/NUR/commit/8681370ccedd223b64bc27b27c03c84b4d0356cf) automatic update
* [`256c8d8b`](https://github.com/nix-community/NUR/commit/256c8d8b7591ea1dcbc3dd421bb2f84aa2bd7f65) automatic update
* [`dc4c374b`](https://github.com/nix-community/NUR/commit/dc4c374b177c67052d1aeaa71a3ec2777aed1f30) automatic update
* [`6b276865`](https://github.com/nix-community/NUR/commit/6b2768655fd96a4973abd14492b2090186d36aba) automatic update
* [`d031c021`](https://github.com/nix-community/NUR/commit/d031c021ee3a5c5e54463885888b48370caaf5fa) automatic update
* [`6c440059`](https://github.com/nix-community/NUR/commit/6c440059ff79f362b144697623ce46acf61aeb34) automatic update
* [`7603bbf1`](https://github.com/nix-community/NUR/commit/7603bbf1fabb985e5d7a9c4ba746667b09302a4c) automatic update
* [`fa616a8f`](https://github.com/nix-community/NUR/commit/fa616a8f3377fe326e4840eeef5faebdb75a73ec) automatic update
* [`cbfb103a`](https://github.com/nix-community/NUR/commit/cbfb103a321a6a556d59afafae9d480d0e4ffd43) automatic update
* [`69d9b04a`](https://github.com/nix-community/NUR/commit/69d9b04af23b10e055b1a0f98e8f392af9099637) automatic update
* [`ac0f4188`](https://github.com/nix-community/NUR/commit/ac0f4188667553a835091061be43b28038dff910) automatic update
* [`d14383a2`](https://github.com/nix-community/NUR/commit/d14383a21f62430d0587ab86823785f3032093f9) automatic update
* [`f17bcab7`](https://github.com/nix-community/NUR/commit/f17bcab773b5695fb90470fd30434fca29399b6f) automatic update
* [`2a7afd9a`](https://github.com/nix-community/NUR/commit/2a7afd9ab2829ff1a7d63f2acc0282b673e5e010) automatic update
* [`d2b3d9cc`](https://github.com/nix-community/NUR/commit/d2b3d9cc84099b9b23bf54f0bbb44371fe5d70f0) automatic update
* [`52969ed6`](https://github.com/nix-community/NUR/commit/52969ed6858af04b03294f6187284b5ef37c1840) automatic update
* [`a9cf520b`](https://github.com/nix-community/NUR/commit/a9cf520bb27b76e2fb81cd50ac45fce0ced2c791) automatic update
* [`45b0a10a`](https://github.com/nix-community/NUR/commit/45b0a10a34e5ee04590c72d091e5c18d31fb2e2f) automatic update
* [`db0d8018`](https://github.com/nix-community/NUR/commit/db0d8018c1f1583de8c7fd72c6a2aa401c094e28) automatic update
* [`ffcab469`](https://github.com/nix-community/NUR/commit/ffcab46972b669ac2764595fbf971b52fe33475f) automatic update

emacs-overlay: 54967f1a51f2742c580c7ab1f3174e2e1afe874f to d9530a7048f4b1c0f65825202a0ce1d111a1d39a
* [`cc636794`](https://github.com/nix-community/emacs-overlay/commit/cc636794a9e89e7ea6c90a9f9e3ca926658db1e5) Updated repos/elpa
* [`168fdade`](https://github.com/nix-community/emacs-overlay/commit/168fdade2347d114be0db495948a5d0abd07dda5) Updated repos/emacs
* [`8ee29089`](https://github.com/nix-community/emacs-overlay/commit/8ee290894a4e4ac64486f725cc32895709a12b44) Updated repos/melpa
* [`efa241d7`](https://github.com/nix-community/emacs-overlay/commit/efa241d7545bd95fc9d64658536591fa127b0f4f) Updated repos/emacs
* [`12e8c237`](https://github.com/nix-community/emacs-overlay/commit/12e8c2373069c7f40ced6c8e1beae2813ac91ca9) Updated repos/melpa
* [`2698ffef`](https://github.com/nix-community/emacs-overlay/commit/2698ffef87f88f8f5b9a1db25f89edb47235bc93) Updated repos/emacs
* [`e01f84c1`](https://github.com/nix-community/emacs-overlay/commit/e01f84c11de72ca738db795f1f47b43d593aba1f) Updated repos/melpa
* [`ea58d599`](https://github.com/nix-community/emacs-overlay/commit/ea58d59916cf8f96a7e353d328ec95982151edbe) README: Add "Install directly from the overlay" section
* [`c7235361`](https://github.com/nix-community/emacs-overlay/commit/c72353617dd970964c675c448d4663d11584c75f) README: Move known words to the end of the buffer
* [`b449fbfe`](https://github.com/nix-community/emacs-overlay/commit/b449fbfe692a4ffe7871a8459af771d2b5efccf4) Merge pull request nix-community/emacs-overlay#123 from DamienCassou/install-from-overlay
* [`ec3859b9`](https://github.com/nix-community/emacs-overlay/commit/ec3859b96acb257d6df709ba8c0a05bcb11c26de) Updated repos/elpa
* [`cbdec5e5`](https://github.com/nix-community/emacs-overlay/commit/cbdec5e50daf98826ff2f84819ddef517dc73be5) Updated repos/emacs
* [`828ac45c`](https://github.com/nix-community/emacs-overlay/commit/828ac45c153468dc3cda3a6d3e404b6d618eb40f) Updated repos/melpa
* [`d239f0da`](https://github.com/nix-community/emacs-overlay/commit/d239f0da8189d35d5336c38c370bbf452dbfd4a8) Updated repos/emacs
* [`fe4b8f08`](https://github.com/nix-community/emacs-overlay/commit/fe4b8f089c74233814a74626bb6fb58142d977c9) Updated repos/melpa
* [`f3bae697`](https://github.com/nix-community/emacs-overlay/commit/f3bae697e420ac4a7e489af541c5bd2c7f5a01a7) Updated repos/emacs
* [`fbc910b9`](https://github.com/nix-community/emacs-overlay/commit/fbc910b94b313e821e833f407076a163527fa517) Updated repos/melpa
* [`2758f7cb`](https://github.com/nix-community/emacs-overlay/commit/2758f7cbd7b25be48268c4e3687be4840a07012f) Updated repos/emacs
* [`742dca27`](https://github.com/nix-community/emacs-overlay/commit/742dca27e1f010f3e5bbce7ab4581c13c1585549) Updated repos/melpa
* [`0eff3c8c`](https://github.com/nix-community/emacs-overlay/commit/0eff3c8c152e1306af34a3a7332d9f8e5dbe6067) Updated repos/melpa
* [`7d665efa`](https://github.com/nix-community/emacs-overlay/commit/7d665efa6a7963d746d19568412b7f477ff1b2e8) Updated repos/elpa
* [`4b3f802d`](https://github.com/nix-community/emacs-overlay/commit/4b3f802dc4951f6d0268a6fda962648399c1d2c1) Updated repos/emacs
* [`dcb4f8e9`](https://github.com/nix-community/emacs-overlay/commit/dcb4f8e97b3a6f215e8a30bc01028fc67a4015e7) Updated repos/melpa
* [`60057791`](https://github.com/nix-community/emacs-overlay/commit/6005779173365a3bdf793b37c3bd57446372eb70) Updated repos/emacs
* [`d9530a70`](https://github.com/nix-community/emacs-overlay/commit/d9530a7048f4b1c0f65825202a0ce1d111a1d39a) Updated repos/melpa

home-manager: 920ea74afee92d321a4ff7dc714b165daaad78ec to ddcd476603dfd3388b1dc8234fa9d550156a51f5
* [`ffbc3819`](https://github.com/nix-community/home-manager/commit/ffbc3819e4f8aedb0bbd3a12e3dc70e35c0dbcea) prezto: fix environment files being overwritten (rycee/home-manager#1863)
* [`6245dd11`](https://github.com/nix-community/home-manager/commit/6245dd11cf59698aacdf8b153e3e7070abbef36f) chromium: remove 'extensions' option for proprietary Chrome versions (rycee/home-manager#1867)
* [`de1fa8de`](https://github.com/nix-community/home-manager/commit/de1fa8defbdc9b3330858d2686f37af86b29ca6e) docs: fix darwin-rebuild command (rycee/home-manager#1869)
* [`f9b5172d`](https://github.com/nix-community/home-manager/commit/f9b5172d956c79add5f6c8acccea2c7ca7f904c9) jq: Use default upstream values for colors (rycee/home-manager#1870)
* [`f30b62a7`](https://github.com/nix-community/home-manager/commit/f30b62a74d05e055208bea448442b9fc483e9fa5) git: install delta when it's enabled (rycee/home-manager#1866)
* [`ddcd4766`](https://github.com/nix-community/home-manager/commit/ddcd476603dfd3388b1dc8234fa9d550156a51f5) termite: remove use of package alias

nixos: 36e15cd6e7d55ba143caf3dc930467ace573d85c to f8929dce13e729357f31d5b2950cbb097744bed7
* [`00bce888`](https://github.com/NixOS/nixpkgs/commit/00bce88813d670f64be5d64d718b7bc5a5700e43) minio: 2020-08-08T04-50-06Z -> 2021-02-14T04-01-33Z
* [`c1a51090`](https://github.com/NixOS/nixpkgs/commit/c1a510905de7e923dd51b5549f5fdfa3ae1a4f82) botan2: 2.17.2 -> 2.17.3
* [`8ba87878`](https://github.com/NixOS/nixpkgs/commit/8ba878784da079bd4f37f8e51554b17d07f39f5d) git-big-picture: 0.10.1 -> 1.0.0 (fixes CVE-2021-3028)
* [`08693a7c`](https://github.com/NixOS/nixpkgs/commit/08693a7c7993403e206453353dd7e7bd7ea056e0) git-big-picture: 1.0.0 -> 1.1.1
* [`faf316fd`](https://github.com/NixOS/nixpkgs/commit/faf316fd5a1642e5eae70d500f06384a28bfdd6c) imagemagick: 7.0.10-61 -> 7.0.11-3
* [`9c34c862`](https://github.com/NixOS/nixpkgs/commit/9c34c8620db2bcaf591d562b1d784f610c248de8) imagemagick: add erictapen as maintainer
* [`52abed1c`](https://github.com/NixOS/nixpkgs/commit/52abed1c7ce95bd02a53ca4dd06d34ab5e826f84) wireshark: 3.4.3 -> 3.4.4
* [`7b21af75`](https://github.com/NixOS/nixpkgs/commit/7b21af75eb5add6e14f7d8f96416e7a216021b99) smarty3: 3.1.36 -> 3.1.39
* [`d5684ec0`](https://github.com/NixOS/nixpkgs/commit/d5684ec0cd5da8205ee03c96f0146e19c0636f78) botan2: 2.17.2 -> 2.17.3
* [`6557a3c1`](https://github.com/NixOS/nixpkgs/commit/6557a3c1fe8ed87cc97c7c95668324847043dbdc) nomachine-client: 7.0.211 -> 7.2.3
* [`172040d1`](https://github.com/NixOS/nixpkgs/commit/172040d1281b1e813cc1cdfb5a8152101bd3341f) electron_9: 9.4.1 -> 9.4.3
* [`b93f2e85`](https://github.com/NixOS/nixpkgs/commit/b93f2e85b5d2ca0b6715b63f14b28a7fbd570385) electron_10: 10.3.0 -> 10.3.2
* [`f9f142fc`](https://github.com/NixOS/nixpkgs/commit/f9f142fc0a33f1ceca4067ffab59f30f486950d1) electron_11: 11.2.1 -> 11.2.3
* [`bcc972d5`](https://github.com/NixOS/nixpkgs/commit/bcc972d5085067b7b1093ffcd38503cf56582975) electron_11: 11.2.3 -> 11.3.0
* [`2f0d0014`](https://github.com/NixOS/nixpkgs/commit/2f0d0014b82c28c1a3ba238026092fb9e3fdb0a1) electron_10: 10.3.2 -> 10.4.0
* [`4d797d37`](https://github.com/NixOS/nixpkgs/commit/4d797d370911e67b4f2b4264979a635d6e233ee3) electron_9: 9.4.3 -> 9.4.4
* [`5bb5d611`](https://github.com/NixOS/nixpkgs/commit/5bb5d61154bb9de283c7b94254d17b2ded1088be) libetpan: Fix CVE-2020-15953
* [`1cbb784b`](https://github.com/NixOS/nixpkgs/commit/1cbb784b829481d1c1b03496488ba2e77e39f4d6) ndpi: 2.8 -> 3.4
* [`12d9950b`](https://github.com/NixOS/nixpkgs/commit/12d9950bf47e0ac20d4d04e189448ee075242117) element: 1.7.22 -> 1.7.23
* [`01897afb`](https://github.com/NixOS/nixpkgs/commit/01897afb96063f5e2d6ee6f76ff843c413e7b271) youtube-dl: 2021.03.03 -> 2021.03.14
* [`61b5ab68`](https://github.com/NixOS/nixpkgs/commit/61b5ab68c4994dcf7f52892ab06f924e3c37a4d6) Merge NixOS/nixpkgs#116040: firefox-bin: 86.0 -> 86.0.1
* [`8d2a5a2e`](https://github.com/NixOS/nixpkgs/commit/8d2a5a2edafad7bb89b3504957d65fdfd9bce682) linux: 5.4.105 -> 5.4.106
* [`78aaee88`](https://github.com/NixOS/nixpkgs/commit/78aaee88bc365e2ccae81bc4de55eca38f34c8b8) linux: 4.19.180 -> 4.19.181
* [`896c5cc3`](https://github.com/NixOS/nixpkgs/commit/896c5cc3ad18b46565f2881b77bb509aeb3f134e) linux: 4.4.261 -> 4.4.262
* [`f6cb6fd2`](https://github.com/NixOS/nixpkgs/commit/f6cb6fd27a68178c7e85c1920ac216378727f114) linux: 4.9.261 -> 4.9.262
* [`b657c165`](https://github.com/NixOS/nixpkgs/commit/b657c165833a034056f81a0942ada258f7224338) linux: 5.10.23 -> 5.10.24
* [`5cf4aa47`](https://github.com/NixOS/nixpkgs/commit/5cf4aa4749b641497a3667396392ab585ff17d2c) linux/hardened/patches/4.14: 4.14.225-hardened1 -> 4.14.226-hardened1
* [`adc2a641`](https://github.com/NixOS/nixpkgs/commit/adc2a64172941575adc909c4eb27813a6ae5d827) linux/hardened/patches/4.19: 4.19.180-hardened1 -> 4.19.181-hardened1
* [`92f396e0`](https://github.com/NixOS/nixpkgs/commit/92f396e031df66fd434387726125b1d9cc0992d8) linux/hardened/patches/5.10: 5.10.23-hardened1 -> 5.10.24-hardened1
* [`e7a5afb1`](https://github.com/NixOS/nixpkgs/commit/e7a5afb1b46f1eaa3f5d8c6aa150c06f53a1f707) linux/hardened/patches/5.4: 5.4.105-hardened1 -> 5.4.106-hardened1
* [`58c971e4`](https://github.com/NixOS/nixpkgs/commit/58c971e49e0d1f3402d2f64cab54d37461b7993e) maintainers: Add "Obsidian Systems Maintenance"
* [`5b046348`](https://github.com/NixOS/nixpkgs/commit/5b046348c2e926682021cef26724659d224c06d2) tests.cuda.cuda-sample_*: Init at supported CUDA toolkit versions
* [`b26f8166`](https://github.com/NixOS/nixpkgs/commit/b26f816668abbb61e817a41b4662fde0e578f9fc) tests.cude.cuda-library-samples.{cublas,cusolver}: init at master
* [`1ee2861a`](https://github.com/NixOS/nixpkgs/commit/1ee2861a41ec36cceb80bf0eb09466880c53eee4) cudatensor: Init at 1.2.2
* [`6ef3e88b`](https://github.com/NixOS/nixpkgs/commit/6ef3e88b8d71f42e187f8b4f1b6d7c6980b73b34) tests.cude.cuda-library-samples.cutensor: init at same version as others
* [`54f7ccfb`](https://github.com/NixOS/nixpkgs/commit/54f7ccfb63cac9d093ce53420377cc1a7e6bff21) python37Packages.cupy: Add cutensor optional dep
* [`a3b3c488`](https://github.com/NixOS/nixpkgs/commit/a3b3c488e8eb8e0a97f9155b0eb51dd74c1d2251) maintainers-list: obsidian-systems-maintenance
* [`4cbbe3b0`](https://github.com/NixOS/nixpkgs/commit/4cbbe3b0c04d341fed8878e6164352b536695dce) {,cudnn_}cudatoolkit_11_{1,2}: Port over from master
* [`8ad6a65b`](https://github.com/NixOS/nixpkgs/commit/8ad6a65b14a90b10ba486bd303f19de1919aa602) firefox: drop maintainership
* [`bfd0e91b`](https://github.com/NixOS/nixpkgs/commit/bfd0e91bffd731ab3ecc0ec1bb7837ff19147a88) Merge pull request NixOS/nixpkgs#113642 from bachp/feat/minio-cve-2021-21287
* [`f1386223`](https://github.com/NixOS/nixpkgs/commit/f138622354f87364c5dfc33345e5e66f1b5d8feb) zoom-us: unset Qt env variables to fix dialog boxes
* [`cfa92653`](https://github.com/NixOS/nixpkgs/commit/cfa926538906823a5d9d0027a13e503f8e6428e4) zoom-us: 5.5.6981.0202 -> 5.5.7011.0206
* [`80e3fe7a`](https://github.com/NixOS/nixpkgs/commit/80e3fe7a92b28ab144edf4eb54a3817432b1c929) zoom-us: 5.5.7011.0206 → 5.5.7938.0228
* [`b3d2a8c1`](https://github.com/NixOS/nixpkgs/commit/b3d2a8c1b7911c818af85145ecd387f876c12579) grafana: 7.4.3 -> 7.4.5
* [`c55c5301`](https://github.com/NixOS/nixpkgs/commit/c55c5301e5b03b2ff1fc739ebc325ed6d44ac693) Merge pull request NixOS/nixpkgs#116830 from andir/20.09/grafana
* [`3858fbc0`](https://github.com/NixOS/nixpkgs/commit/3858fbc08e6c0bc92e0571a006319ff06c9a893a) Merge pull request NixOS/nixpkgs#116642 from Pamplemousse/backport_libetpan
* [`8a35e0bf`](https://github.com/NixOS/nixpkgs/commit/8a35e0bf675193483aeb9b1f7fec2b0266622703) Merge pull request NixOS/nixpkgs#116821 from Mic92/zoom-backport
* [`94166491`](https://github.com/NixOS/nixpkgs/commit/941664919391c66997c08ee58a98af55eee32d50) Merge pull request NixOS/nixpkgs#116643 from Pamplemousse/backport_ndpi
* [`64b06971`](https://github.com/NixOS/nixpkgs/commit/64b069715c8d4fadf665f5604cffedb7a90d503f) Merge pull request NixOS/nixpkgs#115316 from LeSuisse/botan2-2.17.3-20.09
* [`4077d9e7`](https://github.com/NixOS/nixpkgs/commit/4077d9e705d08460d565ded6c7ee76c0ab7eaca3) Merge pull request NixOS/nixpkgs#116323 from Pamplemousse/backport_git-big-picture
* [`ffc73733`](https://github.com/NixOS/nixpkgs/commit/ffc73733839905c8bc9aec4ede8845e2224b528a) gsoap: 2.8.53 -> 2.8.108
* [`b3614c5f`](https://github.com/NixOS/nixpkgs/commit/b3614c5f6f07722ab1ed9f119912a356c94a4ebc) gitlab: 13.6.7 -> 13.8.6
* [`66f4dc4f`](https://github.com/NixOS/nixpkgs/commit/66f4dc4fd1b47e9e06d0f1bd78faffa51f0cc59c) defaultGemConfig: fix zlib flags for nokogiri >= 1.11
* [`a710a272`](https://github.com/NixOS/nixpkgs/commit/a710a2726dd8884a9fcc261a50b89f77ade5569d) .github/workflows/labels.yml: label PRs
* [`9b8530e3`](https://github.com/NixOS/nixpkgs/commit/9b8530e3721fc008bacac61b6c50a29712ee2f2f) .github/labeler.yml: update paths and sort
* [`4636ea62`](https://github.com/NixOS/nixpkgs/commit/4636ea62a90094cdc5f36aceb77ff00468a370a5) imagemagick: 7.0.11.3 -> 7.0.11-4
* [`6109ba4f`](https://github.com/NixOS/nixpkgs/commit/6109ba4f3077e2988780452ab16cfcf627691396) ipfs_0_8: Init
* [`ebeac25a`](https://github.com/NixOS/nixpkgs/commit/ebeac25aa1b8e2f1ec8d2b0618d2df4fceb71462) _1password-gui: 0.9.13 -> 0.9.14-4
* [`1944fe4f`](https://github.com/NixOS/nixpkgs/commit/1944fe4f18b74d0c33e4786087b7a9628595c8a7) _1password-gui: 0.9.14-4 -> 0.9.26
* [`be731b9d`](https://github.com/NixOS/nixpkgs/commit/be731b9d09865b3c3ec3a0dc9ffe780ba56805d7) _1password-gui: 0.9.26 -> 8.0.27
* [`99f9ffa3`](https://github.com/NixOS/nixpkgs/commit/99f9ffa31f96e23c44caf630bead250eecbcb231) _1password-gui: 8.0.27 -> 8.0.28
* [`f8929dce`](https://github.com/NixOS/nixpkgs/commit/f8929dce13e729357f31d5b2950cbb097744bed7) Merge pull request NixOS/nixpkgs#117174 from danieldk/1password-backport-8.0.28

nixos-hardware: 31f61b90ddb9257b94888ee17ccf96236e180c76 to 758bc63af2bde87563f9c27710f3dcc16ff9096f
* [`0c5f1761`](https://github.com/NixOS/nixos-hardware/commit/0c5f176147e15b2e402deeedc20870d4a57747f2) Add support for System76 hardware, specifically the Darter Pro 6.
* [`602f9d86`](https://github.com/NixOS/nixos-hardware/commit/602f9d86c630d0daaaf6371fa77b2a04cca86626) Add options for applying the darp6 headset fixup.
* [`d86324ba`](https://github.com/NixOS/nixos-hardware/commit/d86324ba69da76cb9ceb87000172ebb896947a03) system76: Update configs to use the module from Nixpkgs.
* [`fdc08127`](https://github.com/NixOS/nixos-hardware/commit/fdc0812787828fd4a373f9c4c80cbb8d862b3f22) system76: Remove kernel param ec_sys.write_support=1.
* [`d3cd9a22`](https://github.com/NixOS/nixos-hardware/commit/d3cd9a2229c0b699eab4922c081be4607f134cd1) microsoft-surface: add surface-control
* [`007f1d8a`](https://github.com/NixOS/nixos-hardware/commit/007f1d8a07cc4ac6d7353c41df8ffac55e275ff4) Merge branch 'master' into surface-control
* [`bf19677a`](https://github.com/NixOS/nixos-hardware/commit/bf19677a5f377b5306cff1429b04d0023b80dd3d) nixfmt
* [`6406b7ae`](https://github.com/NixOS/nixos-hardware/commit/6406b7ae3f08100ec2d512cb49835d987fd897be) Add MSI GS60 2QE (NixOS/nixos-hardware#224)
* [`6075b4d8`](https://github.com/NixOS/nixos-hardware/commit/6075b4d856ea5c8564c660ada51b49aeb98c3423) fix import
* [`681ffa8a`](https://github.com/NixOS/nixos-hardware/commit/681ffa8a8c27c25a8ea14927dbacdf1ec3117201) Merge pull request NixOS/nixos-hardware#227 from winterqt/surface-control
* [`758bc63a`](https://github.com/NixOS/nixos-hardware/commit/758bc63af2bde87563f9c27710f3dcc16ff9096f) Merge pull request NixOS/nixos-hardware#186 from khumba/system76

nixos-unstable: 266dc8c3d052f549826ba246d06787a219533b8f to f5e8bdd07d1afaabf6b37afc5497b1e498b8046f
* [`33f26ed6`](https://github.com/NixOS/nixpkgs/commit/33f26ed6d47b9f25b98ee6dab8d8e4ca15c4d42b) Merge pull request NixOS/nixpkgs#116590 from servalcatty/v2ray
* [`67dc9e72`](https://github.com/NixOS/nixpkgs/commit/67dc9e721b49e378f0c6849e89f10bf84a1836ea) Merge pull request NixOS/nixpkgs#116621 from toonn/wire-desktop-bump
* [`3643876a`](https://github.com/NixOS/nixpkgs/commit/3643876a3c1944176c4f0da2eaec3b3ad8060328) Merge pull request NixOS/nixpkgs#116606 from tomcur/bump-surge
* [`ea68396a`](https://github.com/NixOS/nixpkgs/commit/ea68396a78b6143fc97c8319ba29c408a80faf9f) Merge pull request NixOS/nixpkgs#101510 from omasanori/libressl-3.2.2
* [`5521ca30`](https://github.com/NixOS/nixpkgs/commit/5521ca303d590aa08c4e2f4480e3c32760c256e8) Merge pull request NixOS/nixpkgs#116664 from SuperSandro2000/pillow-2.7
* [`3a71e9c2`](https://github.com/NixOS/nixpkgs/commit/3a71e9c2565f0ce25a3d889662fd1c8252e97d07) Merge pull request NixOS/nixpkgs#116662 from AndersonTorres/new-xa
* [`c31077a6`](https://github.com/NixOS/nixpkgs/commit/c31077a6020c4d365496a618ba07121b9331bc52) pythonPackages.lxml: fix build on darwin
* [`4c817d4b`](https://github.com/NixOS/nixpkgs/commit/4c817d4b8d7f0fb17f0df9199e0c206a61904cb8) Merge pull request NixOS/nixpkgs#116523 from AndersonTorres/new-yapf
* [`390e5876`](https://github.com/NixOS/nixpkgs/commit/390e587696e5293b0ae67ef2224e183b274c4f17) Merge pull request NixOS/nixpkgs#116283 from AndersonTorres/new-tools
* [`dd2c6182`](https://github.com/NixOS/nixpkgs/commit/dd2c6182b55c38fea979fd7db8ee225370a73825) Merge pull request NixOS/nixpkgs#116628 from r-ryantm/auto-update/lab
* [`8398ff5f`](https://github.com/NixOS/nixpkgs/commit/8398ff5f5f5c2726e66511f77573e4b55b63899f) Merge pull request NixOS/nixpkgs#116656 from r-ryantm/auto-update/tfsec
* [`5bbc8251`](https://github.com/NixOS/nixpkgs/commit/5bbc8251b2f629fa127808c92bc54a85cf7fa8e8) Merge pull request NixOS/nixpkgs#116460 from AndersonTorres/new-chromium-bsu
* [`7f70d66a`](https://github.com/NixOS/nixpkgs/commit/7f70d66a5349e8d039da7af02e89230177c1829b) licenses.odbl: init at 1.0
* [`8463b995`](https://github.com/NixOS/nixpkgs/commit/8463b9959d888ce70d07fdd1cb1e9c62ce2e6dd2) Merge pull request NixOS/nixpkgs#116694 from marsam/update-nodejs-15_x
* [`44061231`](https://github.com/NixOS/nixpkgs/commit/4406123147199df0fc65d0ffa2402bd70286448e) flow: 0.145.0 → 0.146.0
* [`988f5a59`](https://github.com/NixOS/nixpkgs/commit/988f5a5910bdba12f34b500e0dc3aa60042a75a6) ocamlPackages.tcpip: 6.0.0 -> 6.1.0
* [`42110fb5`](https://github.com/NixOS/nixpkgs/commit/42110fb5b8a0950343c123b62ed8d2def221536f) ocamlPackages.encore: 0.7 -> 0.8
* [`4fa067f6`](https://github.com/NixOS/nixpkgs/commit/4fa067f6846566ecd1af35d22237272c3b5dcbae) fluxctl: 1.21.2 -> 1.22.0
* [`acb2a830`](https://github.com/NixOS/nixpkgs/commit/acb2a830188afebf2810d40c0b23eb0c5f7ecf3c) Merge pull request NixOS/nixpkgs#110156 from 06kellyjac/deno
* [`4307699f`](https://github.com/NixOS/nixpkgs/commit/4307699fdbdd687c22548cd5eed381a690edc93f) ocamlPackages.lru: use Dune 2
* [`3f7a86cf`](https://github.com/NixOS/nixpkgs/commit/3f7a86cf65a7fda79bb2b2a638da34c92c9d07b5) google-cloud-sdk: 328.0.0 -> 332.0.0
* [`099a9e80`](https://github.com/NixOS/nixpkgs/commit/099a9e809c493a6bd482d5050ff3259035cb16fa) nixos/update-users-groups: read access to /etc/shadow for group shadow
* [`f4af9d58`](https://github.com/NixOS/nixpkgs/commit/f4af9d58fa09fcabaa8c3ce066c02177985ba781) Merge pull request NixOS/nixpkgs#116659 from r-ryantm/auto-update/tickrs
* [`90a90b15`](https://github.com/NixOS/nixpkgs/commit/90a90b15a37d2cdc6f9eeb3e751febaf67d64145) Merge pull request NixOS/nixpkgs#116655 from r-ryantm/auto-update/teler
* [`84b23a91`](https://github.com/NixOS/nixpkgs/commit/84b23a91bd3d3755e5052e5f1c4a70d82ac67d3f) Merge pull request NixOS/nixpkgs#116231 from r-ryantm/auto-update/xva-img
* [`6501f42a`](https://github.com/NixOS/nixpkgs/commit/6501f42a0d55c7c6c585168840758f93a073f89c) k6: 0.31.0 -> 0.31.1
* [`1ade991a`](https://github.com/NixOS/nixpkgs/commit/1ade991ae9c14dadead2a0e494a3d669fa5fcaea) python3Packages.pyinsteon: 1.0.9 -> 1.0.10
* [`5a41d0d5`](https://github.com/NixOS/nixpkgs/commit/5a41d0d5a0a7365a1b56a53323fb56fffb89c5fb) Merge pull request NixOS/nixpkgs#116285 from r-ryantm/auto-update/jrnl
* [`cc563d84`](https://github.com/NixOS/nixpkgs/commit/cc563d84328bd3e77802a2ea02f2f2e6c1394253) kapp: install completion
* [`8178d877`](https://github.com/NixOS/nixpkgs/commit/8178d877ac3cd0a97176d50ca89ce1c2d9406ca4) go: fix bootstrapping on 32-bit ARM
* [`651c0d0a`](https://github.com/NixOS/nixpkgs/commit/651c0d0a514344485f056fc6d330053aab68390a) Merge pull request NixOS/nixpkgs#115672 from zakame/fixes/perl-FileMap-ld-override
* [`377a1d02`](https://github.com/NixOS/nixpkgs/commit/377a1d02d087c8cc96f2b45446cb905f0e494a1e) python3Packages.pymitv: 1.4.3 -> 1.5.0
* [`f7393191`](https://github.com/NixOS/nixpkgs/commit/f7393191e740d7ab695c5ffeac4766b7dc66cfee) youtube-dl: 2021.03.03 -> 2021.03.14
* [`79d02777`](https://github.com/NixOS/nixpkgs/commit/79d0277791e3c7312bce75b6c0ffc24decd92664) python3Packages.pymazda: 0.0.9 -> 0.0.10 (NixOS/nixpkgs#116712)
* [`47dad1bc`](https://github.com/NixOS/nixpkgs/commit/47dad1bc431557a5792776b6fd8e7b4e01685228) python3Packages.ytmusicapi: init at 0.14.3
* [`800a3dd9`](https://github.com/NixOS/nixpkgs/commit/800a3dd90970a277e3f6853633bd7faf04d6691e) Merge pull request NixOS/nixpkgs#116613 from r-ryantm/auto-update/emplace
* [`256f4e77`](https://github.com/NixOS/nixpkgs/commit/256f4e77c5b45362a3e74f30ba54f6c30e99bb4a) pythonPackages.ajsonrpc: init at 1.1.0
* [`ac465e83`](https://github.com/NixOS/nixpkgs/commit/ac465e83d0a9af74dc7fd185f55d619e063bc807) nqp: 2020.12 -> 2021.02
* [`8aea46b3`](https://github.com/NixOS/nixpkgs/commit/8aea46b3d27ff8ba91585bd547d43b5bf6dae955) moarvm: 2020.12 -> 2021.02
* [`d34c7d51`](https://github.com/NixOS/nixpkgs/commit/d34c7d51486a19f5aff3869a6a7d14baac2d54b5) rakudo: 2020.12 -> 2021.02.1
* [`20237b37`](https://github.com/NixOS/nixpkgs/commit/20237b3704e0231a4962ab46e74b6f1c8a889363) Merge pull request NixOS/nixpkgs#116702 from r-ryantm/auto-update/fluxctl
* [`de4012ac`](https://github.com/NixOS/nixpkgs/commit/de4012ac80df34f1b77f07c70e935e4908729e71) Merge pull request NixOS/nixpkgs#116612 from r-ryantm/auto-update/elixir
* [`a88ead56`](https://github.com/NixOS/nixpkgs/commit/a88ead56190bfd0366af2e6d300f7fc9026a4b61) perlPackages.PerlMagick: enable HDRI support
* [`26706450`](https://github.com/NixOS/nixpkgs/commit/26706450169e291ba88d181b8010a7c3487211cd) Revert "perlPackages.Gtk3ImageView: disable tests"
* [`622a4a2d`](https://github.com/NixOS/nixpkgs/commit/622a4a2dd5b5a47c79f20d9a3b17f010abdd224a) chromiumBeta: 90.0.4430.19 -> 90.0.4430.30
* [`b210f45e`](https://github.com/NixOS/nixpkgs/commit/b210f45e479e7c73942ff74580ec66764e21b1c2) inxi: 3.3.02-1 -> 3.3.03-1
* [`0374811c`](https://github.com/NixOS/nixpkgs/commit/0374811c0f0030a74266fd74f80289261b9177a4) Merge pull request NixOS/nixpkgs#116726 from pacien/perlmagick-enable-hdri
* [`a1f9320a`](https://github.com/NixOS/nixpkgs/commit/a1f9320a01145186ec4070753f10b27c84d9b9e5) gnome-online-accounts: 3.38.0 -> 3.38.1
* [`544b9d29`](https://github.com/NixOS/nixpkgs/commit/544b9d298f8403308082cac9dba5e62eb5108b2a) ocamlPackages.labltk: add version 8.06.10 for OCaml 4.12
* [`0136206b`](https://github.com/NixOS/nixpkgs/commit/0136206b12cdcee87d34ccdfd1864c0bb6541aec) Merge branch 'master' into staging-next
* [`0751f9c5`](https://github.com/NixOS/nixpkgs/commit/0751f9c5a7b96e0ad5fa310c26e703e95752fc42) obs-studio: add wayland to buildInputs
* [`87418abe`](https://github.com/NixOS/nixpkgs/commit/87418abe2dc5c41b2e77654748576b6c24007a3c) Merge pull request NixOS/nixpkgs#116701 from vbgl/flow-0.146.0
* [`f1d40247`](https://github.com/NixOS/nixpkgs/commit/f1d40247bbfab05af9f5c7e9e0c06f97a482c12c) Merge pull request NixOS/nixpkgs#116696 from aanderse/odbl
* [`5564ef77`](https://github.com/NixOS/nixpkgs/commit/5564ef775d18c57302f4a5941fa24932bf80ab86) Merge pull request NixOS/nixpkgs#116698 from marsam/update-cascadia-code
* [`77942858`](https://github.com/NixOS/nixpkgs/commit/779428586c8be2e877ec9a9d9d6799d4340938b1) Merge pull request NixOS/nixpkgs#116535 from SuperSandro2000/fix-collection27
* [`96cb2a4d`](https://github.com/NixOS/nixpkgs/commit/96cb2a4d796c5c2003aa97e1cb95b2f50df6c3a7) python3Packages.tatsu: 5.0.0 -> 5.5.0
* [`b710d592`](https://github.com/NixOS/nixpkgs/commit/b710d59295875d6b7813f61f84c8d18889e8cc8a) spdx-license-list-data: 3.11 -> 3.12
* [`d687129d`](https://github.com/NixOS/nixpkgs/commit/d687129df556cd693cd6d67740133ed81c828a2e) Merge pull request NixOS/nixpkgs#116242 from jtojnar/no-fish-args
* [`ca4e26d1`](https://github.com/NixOS/nixpkgs/commit/ca4e26d1e662231d33831651c2e2ed83b1442cb7) Merge pull request NixOS/nixpkgs#116435 from jtojnar/fwupd-1.5.7
* [`817d9db1`](https://github.com/NixOS/nixpkgs/commit/817d9db163a9909cfb64f31a28e1dc4b3e6e12a8) goffice: 0.10.48 -> 0.10.49
* [`b74e6442`](https://github.com/NixOS/nixpkgs/commit/b74e6442423b01350f2612f42a5571492316d22e) freerdp: 2.3.1 -> 2.3.2
* [`96460c6e`](https://github.com/NixOS/nixpkgs/commit/96460c6e8fa048ad4ecc60ae66026caceb579d12) speechd: 0.10.1 -> 0.10.2
* [`1a48509b`](https://github.com/NixOS/nixpkgs/commit/1a48509bb08a16c93717737d3bb1600dd81d026a) Merge pull request NixOS/nixpkgs#116739 from dotlambda/ytmusicapi-init
* [`2af233af`](https://github.com/NixOS/nixpkgs/commit/2af233afacd91a7f20d435b4097522e63a849e83) Merge pull request NixOS/nixpkgs#115839 from markuskowa/fix-slurm
* [`d94723ce`](https://github.com/NixOS/nixpkgs/commit/d94723cea3d85f25508172e26b00827e07b538af) pythonPackages.bleak: 0.10.0 -> 0.11.0
* [`df8fc751`](https://github.com/NixOS/nixpkgs/commit/df8fc751da377a52a9e1987378c29a53d04b5d9e) mattermost: 5.25.3 -> 5.32.1
* [`b650e022`](https://github.com/NixOS/nixpkgs/commit/b650e0228c558da302e7e038ca04e6c35f4e679e) lens: 3.6.7 -> 4.1.4
* [`18ff5885`](https://github.com/NixOS/nixpkgs/commit/18ff588551b15433f795260ca1760e603f6de196) rust-analyzer: fix build on darwin
* [`f1fe32d3`](https://github.com/NixOS/nixpkgs/commit/f1fe32d3facdc8aa5685e364ff9cb26ff24565f3) Merge pull request NixOS/nixpkgs#116731 from oxzi/bleak-0.11.0
* [`b77372d4`](https://github.com/NixOS/nixpkgs/commit/b77372d43df82b8f834eeb0ebe938610dad69486) Merge pull request NixOS/nixpkgs#116729 from oxzi/spdx-license-list-data-3.12
* [`d17c31ac`](https://github.com/NixOS/nixpkgs/commit/d17c31ac6cee5ca1c21b824c184b23300b08d28f) Merge pull request NixOS/nixpkgs#114857 from siraben/edit-darwin
* [`8048be48`](https://github.com/NixOS/nixpkgs/commit/8048be48a94f330c544abec021b34a81312835e7) ldc: 1.24.0 -> 1.25.1
* [`4b68e4f9`](https://github.com/NixOS/nixpkgs/commit/4b68e4f968191151458f948b0a9ad1c5fbf3c2d5) dub: Add possibility to switch D compiler and compile with ldc per default instead of dmd
* [`45f3a999`](https://github.com/NixOS/nixpkgs/commit/45f3a999d03f304f5269c9955b9843e3cdbca370) dtools: 2.085.1 -> 2.095.1
* [`90a8698b`](https://github.com/NixOS/nixpkgs/commit/90a8698bf6aa6d3ab8917861239eb2ff5434ee4b) gtkd: Compile with ldc instead of dmd
* [`2810e263`](https://github.com/NixOS/nixpkgs/commit/2810e2630ce6a946b9f8e12ccf219d9b2119c7b0) tilix: unstable-2019-10-02 -> 1.9.4
* [`6cfbedca`](https://github.com/NixOS/nixpkgs/commit/6cfbedcac298ace46bf4f61fa84758d5bc7bd8a7) Literate: unstable-2020-09-02 -> unstable-2021-01-22
* [`09acdfde`](https://github.com/NixOS/nixpkgs/commit/09acdfde9420036ca0f56de3292dbb342eebf282) sambamba: 0.7.1 -> 0.8.0
* [`b3837409`](https://github.com/NixOS/nixpkgs/commit/b383740981aa7dbb0f6e548847a02cc82ffadc8d) onedrive: 2.4.7 -> 2.4.10
* [`cb319c27`](https://github.com/NixOS/nixpkgs/commit/cb319c279423bd8ca4b26d1e787d5d77d6433ced) cheesecutter: unstable-2020-04-03 -> unstable-2021-02-27
* [`7e05c580`](https://github.com/NixOS/nixpkgs/commit/7e05c5806990eb54ed45c0c9ba512fc5e296e0fa) dmd: 2.091.1 -> 2.095.1
* [`7d0f9144`](https://github.com/NixOS/nixpkgs/commit/7d0f9144e4d210fc14609a99beac39609f09a238) Merge pull request NixOS/nixpkgs#116755 from dbirks/lens-4.1.4
* [`a8c262fb`](https://github.com/NixOS/nixpkgs/commit/a8c262fbf45933bf341a49a5dc673f0c8ad03997) Merge pull request NixOS/nixpkgs#116005 from dotlambda/mat2-init
* [`c86907f3`](https://github.com/NixOS/nixpkgs/commit/c86907f3245735449ea8a28178a7747803e0e081) Merge pull request NixOS/nixpkgs#116239 from j4m3s-s/add-tea
* [`af6d8c71`](https://github.com/NixOS/nixpkgs/commit/af6d8c71d5edde2362fe5b32a87530d7bbf1d7b6) Merge pull request NixOS/nixpkgs#116469 from zseri/rpm2targz
* [`3daa8adf`](https://github.com/NixOS/nixpkgs/commit/3daa8adf5b1918cfd9bec55ff9397588a5d2ec68) Merge pull request NixOS/nixpkgs#116545 from Emantor/topic/libseat
* [`3bced998`](https://github.com/NixOS/nixpkgs/commit/3bced99816f7bcafb1d243a1d7d1baa557595b1c) zdelta: expand platforms to all and refactor
* [`e3e70904`](https://github.com/NixOS/nixpkgs/commit/e3e70904594566e3fbb5328c8d7276a0adbd468e) dejsonlz4: fix build on darwin
* [`dc3138d9`](https://github.com/NixOS/nixpkgs/commit/dc3138d9b00e262ad128b621d2e02dd7d5a40589) epstool: fix darwin build
* [`be473683`](https://github.com/NixOS/nixpkgs/commit/be473683ea244aafa1d5d1e0cefa122f348e9b63) ministat: expand platforms to all
* [`84c06d27`](https://github.com/NixOS/nixpkgs/commit/84c06d271702da5c952e6ad389b8457fd61cf3fc) bash_unit: expand platforms to all
* [`2890ff43`](https://github.com/NixOS/nixpkgs/commit/2890ff43091dafb9f1377035486830939284e23d) dhcping: expand platforms to unix
* [`d93c9d48`](https://github.com/NixOS/nixpkgs/commit/d93c9d488018049e12a8ba35131834c67dc2671f) httperf: expand platforms to all
* [`cc097672`](https://github.com/NixOS/nixpkgs/commit/cc097672b9bf9c4bd30a31fa7b09852957865098) imgurbash2: expand platforms to all
* [`2da233a1`](https://github.com/NixOS/nixpkgs/commit/2da233a186df720973a4b399f5124ca758b4a8cd) sfeed: expand platforms to all
* [`65e9dd03`](https://github.com/NixOS/nixpkgs/commit/65e9dd0348d00a3a928b320e69e7f513da9a3ec9) spirv-cross: expand platforms to all
* [`bfde7b6b`](https://github.com/NixOS/nixpkgs/commit/bfde7b6b8d111d8c0a1298c47176240e01cc73a3) vimer: expand platforms to all
* [`28a16d05`](https://github.com/NixOS/nixpkgs/commit/28a16d05aa58da1608bc7e4c7c46eb49ae384cf7) altermime: fix darwin build
* [`7453cb20`](https://github.com/NixOS/nixpkgs/commit/7453cb20b182fcb8de6db718e51be4a19ad066f7) abduco: 2018-05-16 -> 2020-04-30
* [`b2d43c40`](https://github.com/NixOS/nixpkgs/commit/b2d43c403826f5dfa0b47399e69aca15533f0696) Merge pull request NixOS/nixpkgs#115265 from ThomasMader/dlang-update
* [`ff27e832`](https://github.com/NixOS/nixpkgs/commit/ff27e8325da1c9c597c75a02273ead097f2a3eb7) python3Packages.sagemaker: 2.29.2 -> 2.30.0
* [`9ed07076`](https://github.com/NixOS/nixpkgs/commit/9ed0707670ffcab8feb54765729c645cc68351cb) python3Packages.botocore: 1.20.29 -> 1.20.30
* [`6da5e2fd`](https://github.com/NixOS/nixpkgs/commit/6da5e2fdc0702ed237f6ca8857b23ad7091316cb) python3Packages.boto3: 1.17.29 -> 1.17.30
* [`29305714`](https://github.com/NixOS/nixpkgs/commit/293057140bed5fe35ae46d8847372e3cf6056f88) awscli: 1.19.29 -> 1.19.30
* [`176eaa21`](https://github.com/NixOS/nixpkgs/commit/176eaa21b40ce1217f8a95320b6fcd8040cc88eb) linux: 4.19.180 -> 4.19.181
* [`52e4fd9b`](https://github.com/NixOS/nixpkgs/commit/52e4fd9bbbc753cd7edcac1002f50724db455d91) linux: 4.4.261 -> 4.4.262
* [`6dc3abd3`](https://github.com/NixOS/nixpkgs/commit/6dc3abd325bdd51a0b3c1912c3e2a3864dfb08ee) linux: 4.9.261 -> 4.9.262
* [`76d908f1`](https://github.com/NixOS/nixpkgs/commit/76d908f1483534f014bd45adbebbbb81cf910a20) linux: 5.10.23 -> 5.10.24
* [`db12849a`](https://github.com/NixOS/nixpkgs/commit/db12849a93021a0ac162b2a1c8cf9aae4ceb6765) linux: 5.11.6 -> 5.11.7
* [`d401f1ed`](https://github.com/NixOS/nixpkgs/commit/d401f1ed14062bd230abc8b96cac29f3955d6c83) linux: 5.4.105 -> 5.4.106
* [`06a97102`](https://github.com/NixOS/nixpkgs/commit/06a97102829a0e98230e5f7efe40968f346dec8a) linux/hardened/patches/4.14: 4.14.225-hardened1 -> 4.14.226-hardened1
* [`89de8143`](https://github.com/NixOS/nixpkgs/commit/89de81439d55359888816bac5bd73da8d4a1e471) linux/hardened/patches/4.19: 4.19.180-hardened1 -> 4.19.181-hardened1
* [`d013e2e9`](https://github.com/NixOS/nixpkgs/commit/d013e2e97bb2dc31d0a154daaea3d0242df68fff) linux/hardened/patches/5.10: 5.10.23-hardened1 -> 5.10.24-hardened1
* [`ed933906`](https://github.com/NixOS/nixpkgs/commit/ed933906b5807368338d8549a873c1c6663a5d9b) linux/hardened/patches/5.11: 5.11.6-hardened1 -> 5.11.7-hardened1
* [`fcab19de`](https://github.com/NixOS/nixpkgs/commit/fcab19deb78fbb5ea24e19b133cf34358176396a) linux/hardened/patches/5.4: 5.4.105-hardened1 -> 5.4.106-hardened1
* [`5506bf04`](https://github.com/NixOS/nixpkgs/commit/5506bf0489ff798f50b507019005a8277f7bbff4) waypoint: 0.2.3 -> 0.2.4
* [`853f1b74`](https://github.com/NixOS/nixpkgs/commit/853f1b740c9a135b2ca3beea207c585a75118dae) fish: 3.2.0 -> 3.2.1
* [`4419aeaa`](https://github.com/NixOS/nixpkgs/commit/4419aeaa9ca7078a3c1b4b420dabda45721a06d8) Merge pull request NixOS/nixpkgs#116680 from r-ryantm/auto-update/cargo-fuzz
* [`29ad1e77`](https://github.com/NixOS/nixpkgs/commit/29ad1e773791c78f719b7b5e103e31b04776e81d) Merge pull request NixOS/nixpkgs#116658 from r-ryantm/auto-update/thc-hydra
* [`417658be`](https://github.com/NixOS/nixpkgs/commit/417658beae14e57b25a1b94aa4894213ad9b4504) Merge pull request NixOS/nixpkgs#116666 from obsidiansystems/cutensor
* [`ba4e8406`](https://github.com/NixOS/nixpkgs/commit/ba4e8406b0e5f33606abc6acdce8ed269d36f3a6) Merge pull request NixOS/nixpkgs#115684 from r-ryantm/auto-update/xlockmore
* [`4abe80b5`](https://github.com/NixOS/nixpkgs/commit/4abe80b5bfe8e692238d333ad958b736b4241392) Merge pull request NixOS/nixpkgs#115559 from r-ryantm/auto-update/rshell
* [`b50a4339`](https://github.com/NixOS/nixpkgs/commit/b50a4339fb299937e250382a196a14f21651c52b) Merge pull request NixOS/nixpkgs#115541 from r-ryantm/auto-update/rspamd
* [`a8fe5390`](https://github.com/NixOS/nixpkgs/commit/a8fe53907d0e90d1b9196dfade1c18c0e5da7635) alttab: Clarify license to GPLv3-or-later
* [`77f39c54`](https://github.com/NixOS/nixpkgs/commit/77f39c54d3f30ec372af5bc6913fa3c447daeebe) Merge pull request NixOS/nixpkgs#113551 from r-ryantm/auto-update/assh
* [`5e4589c8`](https://github.com/NixOS/nixpkgs/commit/5e4589c884f84ba9133a0df8608186bf82733e8a) Merge pull request NixOS/nixpkgs#113749 from r-ryantm/auto-update/python3.7-cornice
* [`c8bf309c`](https://github.com/NixOS/nixpkgs/commit/c8bf309ca86e0fa8c9169b3b080205392c4d683e) Merge pull request NixOS/nixpkgs#116582 from r-ryantm/auto-update/python3.8-datashader
* [`20f6436f`](https://github.com/NixOS/nixpkgs/commit/20f6436fd5e92cca18ced7eed68ce34e3571b562) Merge pull request NixOS/nixpkgs#116583 from r-ryantm/auto-update/python3.8-bx-python
* [`94bcca22`](https://github.com/NixOS/nixpkgs/commit/94bcca22ff7ac36df47b591fa8398eeb71d04b3d) Merge pull request NixOS/nixpkgs#116556 from r-ryantm/auto-update/PortfolioPerformance
* [`2445e9a6`](https://github.com/NixOS/nixpkgs/commit/2445e9a681c8450736514e331d99bfefe4648e0f) Merge branch 'master' into staging-next
* [`39534fc4`](https://github.com/NixOS/nixpkgs/commit/39534fc4ca6501e02be0e400e6b843ea002303e9) Merge pull request NixOS/nixpkgs#112993 from r-ryantm/auto-update/python3.7-ftfy
* [`f1d1f326`](https://github.com/NixOS/nixpkgs/commit/f1d1f326ba82249213a0addd89ed978fae0f7f47) Merge pull request NixOS/nixpkgs#112739 from r-ryantm/auto-update/python3.7-phonenumbers
* [`c048a536`](https://github.com/NixOS/nixpkgs/commit/c048a53666d98027ee2ec6df852b5c733164df42) Merge pull request NixOS/nixpkgs#112736 from r-ryantm/auto-update/python3.7-mergedeep
* [`35d53584`](https://github.com/NixOS/nixpkgs/commit/35d53584ff1453679d7ec95171422ec70dfa0a35) Merge pull request NixOS/nixpkgs#116727 from oxzi/python-ajsonrpc-1.1.0
* [`e2358832`](https://github.com/NixOS/nixpkgs/commit/e235883275789f2a52fc44f2ed7f268e2d574b53) Merge pull request NixOS/nixpkgs#116703 from iAmMrinal0/update/google-cloud-sdk
* [`80c7312d`](https://github.com/NixOS/nixpkgs/commit/80c7312da684a0713464313a744486b3b8d66587) Merge pull request NixOS/nixpkgs#116714 from fabaff/bump-pyinsteon
* [`532ba324`](https://github.com/NixOS/nixpkgs/commit/532ba32490aab7d72c7d6f517297e18335423d84) alttab: Enable doCheck
* [`ef2083cb`](https://github.com/NixOS/nixpkgs/commit/ef2083cb7a72d433e1ac378a67fdc10dc557eb36) google-cloud-sdk: Fix bash completion for gcloud, gsutil
* [`06c5ea2a`](https://github.com/NixOS/nixpkgs/commit/06c5ea2a148e3f3f9bc5e307a1ea92e056fcdd7f) liblapack: disable failing tests on darwin
* [`bcd7b0dd`](https://github.com/NixOS/nixpkgs/commit/bcd7b0dd5d6b48db6640888c6f791a4908568177) darwin/make-bootstrap-tools: avoid brotli dependency
* [`1c7f116d`](https://github.com/NixOS/nixpkgs/commit/1c7f116d1d4bed01185e68d97d5ed6f774684ca2) Merge pull request NixOS/nixpkgs#116537 from onsails/fix/rust-analyzer
* [`3a71547d`](https://github.com/NixOS/nixpkgs/commit/3a71547da6a2e0651a0af42a8f3f8cfea1b550fc) Merge pull request NixOS/nixpkgs#116719 from zowoq/kapp
* [`72daafa2`](https://github.com/NixOS/nixpkgs/commit/72daafa2e68d9a5e9c49662109d5bdf7cc452859) Merge pull request NixOS/nixpkgs#116720 from fabaff/bump-pymitv
* [`82b3b20d`](https://github.com/NixOS/nixpkgs/commit/82b3b20d729f0990574133fde43fa5c2eba901c6) fdtools: fix missing gcc -> $CC replacement
* [`7e5b76bb`](https://github.com/NixOS/nixpkgs/commit/7e5b76bb3b2dcb5d078c225c7cfed3ab1455d168) Merge pull request NixOS/nixpkgs#116488 from collares/sage-maintainers
* [`d4d14bd4`](https://github.com/NixOS/nixpkgs/commit/d4d14bd4b6790adca2c2883e0593cdb0525e9668) liblapack: disable select tests on all darwin platforms (NixOS/nixpkgs#116779)
* [`8497314b`](https://github.com/NixOS/nixpkgs/commit/8497314b8eaee8b43e06c79f02e9d3ac65a94336) Merge pull request NixOS/nixpkgs#116773 from r-burns/darwin-make-bootstrap
* [`6a31db4e`](https://github.com/NixOS/nixpkgs/commit/6a31db4e8fb3aa32da49608e5a83e48d331473dc) freecad: symlink uppercase executable names to lowercase in postFixup
* [`2ba25002`](https://github.com/NixOS/nixpkgs/commit/2ba25002285cc420cabddab2f101afadf8706f89) Merge pull request NixOS/nixpkgs#116759 from 06kellyjac/waypoint
* [`39bc2f7a`](https://github.com/NixOS/nixpkgs/commit/39bc2f7abe5c4eb71c6f47d974606467539e0354) gimp: Fix crash without dot
* [`f6d222e5`](https://github.com/NixOS/nixpkgs/commit/f6d222e5bb4dab35685f821d404ee5581469b0c5) python3Packages.minidump: 0.0.13 -> 0.0.15
* [`09bbc0bb`](https://github.com/NixOS/nixpkgs/commit/09bbc0bb1e4e2f9d2f0a0280ea6a59c66223800d) Merge pull request NixOS/nixpkgs#116787 from jtojnar/gimp-nodot
* [`2a32b0d2`](https://github.com/NixOS/nixpkgs/commit/2a32b0d28ba37b3cbe92eefbab3f815490246c1c) Merge pull request NixOS/nixpkgs#110262 from r-ryantm/auto-update/primesieve
* [`1a12223e`](https://github.com/NixOS/nixpkgs/commit/1a12223ef95d314d9bd23f7d44066862915646ca) Merge pull request NixOS/nixpkgs#111213 from r-ryantm/auto-update/filezilla
* [`c507cb42`](https://github.com/NixOS/nixpkgs/commit/c507cb42a84051882ee39ad778cdd64db8beb433) Merge pull request NixOS/nixpkgs#116733 from stigtsp/package/rakudo-2021.02.1
* [`03eb6426`](https://github.com/NixOS/nixpkgs/commit/03eb6426afb58c8d58d9aa155dcc3a884e28a031) Merge pull request NixOS/nixpkgs#116405 from sgraf812/alttab
* [`e53281a5`](https://github.com/NixOS/nixpkgs/commit/e53281a59b4abd0685ed98f3f16a24d77eb0601d) usbview: init at 2.0 (NixOS/nixpkgs#116450)
* [`5c663b24`](https://github.com/NixOS/nixpkgs/commit/5c663b24b68b209d2d8fa2e95b5eb0ba42fca75e) Merge pull request NixOS/nixpkgs#116508 from saschagrunert/bats
* [`93ec1d1b`](https://github.com/NixOS/nixpkgs/commit/93ec1d1b71a94b0dc0c5591954b0d929526bf2a3) freecad: add flatmesh library via '-D BUILD_FLAT_MESH:BOOL=ON'
* [`8ce21fbe`](https://github.com/NixOS/nixpkgs/commit/8ce21fbec231170d139252145c3b7a9b41c45106) Merge pull request NixOS/nixpkgs#116760 from rnhmjoj/abduco
* [`1c762e19`](https://github.com/NixOS/nixpkgs/commit/1c762e19152c3769aede408a42c80200be7c235d) Merge pull request NixOS/nixpkgs#116772 from benley/gcloud-completion
* [`06c1672d`](https://github.com/NixOS/nixpkgs/commit/06c1672d54b0800e61a0ebe6fc58494d58a6eacd) Merge pull request NixOS/nixpkgs#116791 from fabaff/bump-minidump
* [`3bf806d1`](https://github.com/NixOS/nixpkgs/commit/3bf806d1190604775e35d568be6ae505cd8cae60) Merge pull request NixOS/nixpkgs#116742 from heijligen/obs-studio
* [`d4bbefe4`](https://github.com/NixOS/nixpkgs/commit/d4bbefe48033a5f1717f38bed914febe76b9d9a0) Merge pull request NixOS/nixpkgs#116783 from MatthewCroughan/freecad-symlink
* [`3304216c`](https://github.com/NixOS/nixpkgs/commit/3304216c0293f3d62ceab2264901304c2f5143dc) Merge pull request NixOS/nixpkgs#116587 from r-ryantm/auto-update/python3.8-google-cloud-bigquery
* [`711ea2b6`](https://github.com/NixOS/nixpkgs/commit/711ea2b67d925e8f9791650623746f8dab8418a1) Merge pull request NixOS/nixpkgs#116600 from siraben/darwin-mass-fix-buildInputs=0
* [`4e415a8e`](https://github.com/NixOS/nixpkgs/commit/4e415a8e063735fe231a77847064a08abd6d7f99) Merge pull request NixOS/nixpkgs#116377 from r-ryantm/auto-update/python3.8-google-cloud-bigquery-datatransfer
* [`324f46b3`](https://github.com/NixOS/nixpkgs/commit/324f46b31bbda0d4039d1109d0deff20f8791e64) gitlab: 13.8.5 -> 13.8.6 (NixOS/nixpkgs#116740)
* [`296c47d7`](https://github.com/NixOS/nixpkgs/commit/296c47d7b225445adeda4cad61a2031180099a75) Merge pull request NixOS/nixpkgs#116282 from nh2/programs-turbovnc
* [`67272ac8`](https://github.com/NixOS/nixpkgs/commit/67272ac8fa32bfbb0ba04228ef44ca5d0e4e5af0) Merge pull request NixOS/nixpkgs#116493 from aanderse/kodi-wip
* [`370a401e`](https://github.com/NixOS/nixpkgs/commit/370a401ee0cf0470f85d760128c1711ebf1c5dee) nixUnstable: pre20210308_1c0e3e4 -> pre20210317_8a5203d
* [`85f5d9a6`](https://github.com/NixOS/nixpkgs/commit/85f5d9a6ed5b5734c884798f6c9558f9df5e39e0) nixos-rebuild: nix flake info -> nix flake metadata
* [`aea8bbde`](https://github.com/NixOS/nixpkgs/commit/aea8bbde8da0a9279d832f6fbd3afd916f972957) python38Packages.azure-mgmt-netapp: 1.0.0 -> 2.0.0
* [`d73a492e`](https://github.com/NixOS/nixpkgs/commit/d73a492e831d91dc62f97132e3e545bb9247dfc8) Merge master into staging-next
* [`3ee1fb4f`](https://github.com/NixOS/nixpkgs/commit/3ee1fb4f094db89cc40d78505b8d5d1eabf161d3) Merge pull request NixOS/nixpkgs#102927 from sikmir/vk-messenger
* [`6829f9e1`](https://github.com/NixOS/nixpkgs/commit/6829f9e141095512add567a6f0c54c914c6ed7e2) texlive.bin.dvipng: refactor gs hardcoding, add a test for it
* [`c5383d60`](https://github.com/NixOS/nixpkgs/commit/c5383d6046432443fb5b9103af7041ef09a55c5b) dfmt: init at 1.2.0
* [`f382f89a`](https://github.com/NixOS/nixpkgs/commit/f382f89af5065d3b48c573087fb54a8eb643aa57) maintainers: add jackgerrits
* [`a364fb65`](https://github.com/NixOS/nixpkgs/commit/a364fb65571b0180552c1b5ffded1c3d3c2e3ad3) vowpal-wabbit: init at 8.9.2
* [`6869845f`](https://github.com/NixOS/nixpkgs/commit/6869845ff1d1252a9b727509213c81b27e10f48c) Merge pull request NixOS/nixpkgs#116808 from veprbl/pr/texlive_dvipng_set_gs
* [`30467aa9`](https://github.com/NixOS/nixpkgs/commit/30467aa9dd93c48873aba3814743f9d67d034f45) Merge pull request NixOS/nixpkgs#116490 from sternenseemann/luv-0.5.7
* [`12238b08`](https://github.com/NixOS/nixpkgs/commit/12238b08ef347c3e6118e97daadc6ac05efc48b0) pythonPackages.pylint: fix build on darwin
* [`a6155fc1`](https://github.com/NixOS/nixpkgs/commit/a6155fc19e31fe0a49b75409d02a2d8b6bb97aa0) Merge pull request NixOS/nixpkgs#116637 from r-ryantm/auto-update/minio
* [`f43e5916`](https://github.com/NixOS/nixpkgs/commit/f43e5916bd567631ab70a85fd3fec02f4ad43a9a) perlPackages.Mojolicious: 8.71 -> 9.10
* [`2a7102e4`](https://github.com/NixOS/nixpkgs/commit/2a7102e44be1dc824a7999bc51d18a421673a087) perlPackages.MojoIOLoopDelay: init at 8.76
* [`9f0eb44b`](https://github.com/NixOS/nixpkgs/commit/9f0eb44bb5080d255d86b802c000f87a8353ec9c) perlPackages.MojoIOLoopForkCall: use MojoIOLoopDelay
* [`4f1792a5`](https://github.com/NixOS/nixpkgs/commit/4f1792a55755522aa616288b89ffb0143b7a97c2) perlPackages.MinionBackendSQLite: 5.0.3 -> 5.0.4
* [`c716ac80`](https://github.com/NixOS/nixpkgs/commit/c716ac8095cb5f260f12820cc538a3cb68053eae) perlPackages.MojoliciousPluginAssetPack: 2.10 -> 2.13
* [`62998d65`](https://github.com/NixOS/nixpkgs/commit/62998d65bcfe52654e7273e4556a5ddd86441561) perlPackages.MojoSQLite: 3.004 -> 3.005
* [`56e0d7c3`](https://github.com/NixOS/nixpkgs/commit/56e0d7c355a752d2aa4622a70115d19b5e1daf2f) perlPackages.MojoUserAgentCached: 1.12 -> 1.16
* [`69d54605`](https://github.com/NixOS/nixpkgs/commit/69d546054a6f4a213955d435eade1b13a3291095) convos: 5.11 -> 6.06
* [`de015e25`](https://github.com/NixOS/nixpkgs/commit/de015e25c9869ab23a20286ff48d6ee4cf31e113) perlPackages.JSONValidator: 4.10 -> 4.14
* [`bcef2ef2`](https://github.com/NixOS/nixpkgs/commit/bcef2ef241f911cc38ea56d8a8a1d4bbc2bf701a) perlPackages.MojoliciousPluginOpenAPI: 3.40 -> 4.00
* [`d6c2d861`](https://github.com/NixOS/nixpkgs/commit/d6c2d861269b1ffe70210ae7e25c35b4c493df02) perlPackages.OpenAPIClient: 0.25 -> 1.00
* [`9876b66d`](https://github.com/NixOS/nixpkgs/commit/9876b66d7b59986612839430ce2f2985f77e616c) perlPackages.LinkEmbedder: 1.16 -> 1.17
* [`e35acbb6`](https://github.com/NixOS/nixpkgs/commit/e35acbb6d89cd2c2a9cdc97138b3aae352de8c3f) Merge pull request NixOS/nixpkgs#114065 from zakame/updates/perl-Mojolicious-9.01
* [`6ffd2fe0`](https://github.com/NixOS/nixpkgs/commit/6ffd2fe000f558a8dfa0404eaea3530fdc8fa69a) Merge master into staging-next
* [`ea677101`](https://github.com/NixOS/nixpkgs/commit/ea677101b70ff77e70b8bc89f77b39416cdbcaf5) vsce/MS-vsliveshare.vsliveshare: 1.0.3912 -> 1.0.3968
* [`1f7bf379`](https://github.com/NixOS/nixpkgs/commit/1f7bf3790d6b4ac3002b6af80259ae2df3eb4f6b) python38Packages.gradient: 1.4.2 -> 1.4.3
* [`6e356dd8`](https://github.com/NixOS/nixpkgs/commit/6e356dd8f7b2e331e542b08d8e1f613a070ea4a5) python38Packages.databricks-cli: 0.14.2 -> 0.14.3
* [`dd503734`](https://github.com/NixOS/nixpkgs/commit/dd503734f05f1750e86f89ea122fc4e5e2407c7a) python38Packages.jenkins-job-builder: 3.8.0 -> 3.9.0
* [`1bb03d47`](https://github.com/NixOS/nixpkgs/commit/1bb03d47cd31fcf88e727878e33569c9b4ab335f) ocamlPackages.ppx_import: 1.7.1 → 1.8.0
* [`5dc8d813`](https://github.com/NixOS/nixpkgs/commit/5dc8d8132da0a0abeacbab59a928a137c69d1ed8) Merge pull request NixOS/nixpkgs#109927 from r-ryantm/auto-update/clipgrab
* [`297b1ba3`](https://github.com/NixOS/nixpkgs/commit/297b1ba320ae8467bf273f5831e5ec358685057c) Revert "nixos/systemd: Handle template overrides"
* [`8b3f258b`](https://github.com/NixOS/nixpkgs/commit/8b3f258bbc7bcbdb363ad81c3117c87c4c1aa95f) Merge pull request NixOS/nixpkgs#109928 from r-ryantm/auto-update/cproto
* [`979de853`](https://github.com/NixOS/nixpkgs/commit/979de853c3e914deae932f80cd1bb6589aba9a7c) Merge pull request NixOS/nixpkgs#110532 from r-ryantm/auto-update/pidgin-carbons
* [`e6af44ab`](https://github.com/NixOS/nixpkgs/commit/e6af44ab426370593cb5d5b322d57087924f04d0) Merge pull request NixOS/nixpkgs#110345 from r-ryantm/auto-update/cutelyst
* [`260f5970`](https://github.com/NixOS/nixpkgs/commit/260f5970d0ddee6d8074e26166c27f320af59141) Merge pull request NixOS/nixpkgs#116459 from Pamplemousse/document_vulnerability_roundup
* [`8f1b0373`](https://github.com/NixOS/nixpkgs/commit/8f1b0373f9c18c1dc5489ed370173fa25c58990b) Merge pull request NixOS/nixpkgs#116750 from freezeboy/update-mattermost
* [`1c34f370`](https://github.com/NixOS/nixpkgs/commit/1c34f370701381c6ad81e9a6fee0debc2db7c90b) Merge pull request NixOS/nixpkgs#110166 from r-ryantm/auto-update/pax-utils
* [`dac047ce`](https://github.com/NixOS/nixpkgs/commit/dac047cef4af24ad7e0cd0fc3d12512516afca81) Merge pull request NixOS/nixpkgs#116814 from bobrik/ivan/pylint-darwin-fix
* [`1ae5e50d`](https://github.com/NixOS/nixpkgs/commit/1ae5e50d802be41cf23602ccd8aa83bd74d19744) Merge pull request NixOS/nixpkgs#115557 from r-ryantm/auto-update/samplv1
* [`f7b6ac73`](https://github.com/NixOS/nixpkgs/commit/f7b6ac73dcb8bf72b0ccc78d285d432a6c644003) Merge pull request NixOS/nixpkgs#111775 from r-ryantm/auto-update/matterbridge
* [`23ef497c`](https://github.com/NixOS/nixpkgs/commit/23ef497c17a11ed4f6db18955f1c46bdeb3bcaa6) Merge pull request NixOS/nixpkgs#111237 from r-ryantm/auto-update/gtkwave
* [`33bd43d2`](https://github.com/NixOS/nixpkgs/commit/33bd43d2ea3bbed1aef2cd9d5a30f04756842045) chromiumDev: 91.0.4442.4 -> 91.0.4449.6
* [`9a3f2457`](https://github.com/NixOS/nixpkgs/commit/9a3f2457f128cbbcbddb9053822988fdd247e416) grafana: 7.4.3 -> 7.4.5
* [`b6883948`](https://github.com/NixOS/nixpkgs/commit/b68839485d2064a574e0825ac662912727ec62da) ocamlPackages.bitstring: 4.0.1 → 4.1.0
* [`2b16ff34`](https://github.com/NixOS/nixpkgs/commit/2b16ff345726c8d55e7687e1eeaf9b15a7f34370) nncp: 5.3.3 -> 6.2.0
* [`9ed9e5f8`](https://github.com/NixOS/nixpkgs/commit/9ed9e5f8c386eda4ac65891a6ff8ebaf02c38781) cbonsai: 1.0.1 -> 1.0.4
* [`a99b2f42`](https://github.com/NixOS/nixpkgs/commit/a99b2f4274f2993b8056b3f993f77e43a5f96c0a) deltachat-electron: 1.15.2 -> 1.15.3
* [`22710a0b`](https://github.com/NixOS/nixpkgs/commit/22710a0bc5c2deec81d0532d3e2175881ed9b50a) Merge pull request NixOS/nixpkgs#99304 from woffs/nncp-5.4.0
* [`ec27c69c`](https://github.com/NixOS/nixpkgs/commit/ec27c69c36f71dcef7184f8ba226c006c450c02d) Merge pull request NixOS/nixpkgs#116823 from aforemny/unbreak-containers
* [`9fb26cf0`](https://github.com/NixOS/nixpkgs/commit/9fb26cf0c8cb815768e33011311236d998e0be26) Merge pull request NixOS/nixpkgs#116829 from andir/grafana
* [`90cf9e3c`](https://github.com/NixOS/nixpkgs/commit/90cf9e3c2015c4fb229416212eef67556399daf4) androidStudioPackages.stable: 4.1.2.0 -> 4.1.3.0
* [`ac0c6a92`](https://github.com/NixOS/nixpkgs/commit/ac0c6a920f7d743b894d33d15bbf2b6b6779d8db) androidStudioPackages.beta: 4.2.0.21 -> 4.2.0.22
* [`24d30162`](https://github.com/NixOS/nixpkgs/commit/24d3016208bc6140fb416a0c151300b568e48808) Merge pull request NixOS/nixpkgs#114016 from oxalica/fix/partition-manager
* [`148758e4`](https://github.com/NixOS/nixpkgs/commit/148758e4ff00da00f6cfb1b1d4a529f9df8d358f) androidStudioPackages.{canary,dev}: 2020.3.1.7 -> 2020.3.1.10
* [`c804f22a`](https://github.com/NixOS/nixpkgs/commit/c804f22a81bb70bc8a82939dbfc8388dfe22c0c2) Merge master into staging-next
* [`29df3bc2`](https://github.com/NixOS/nixpkgs/commit/29df3bc24cd80e5a13f866f639e5d7f4c47b643e) doc: fix code formatting
* [`65f9b13d`](https://github.com/NixOS/nixpkgs/commit/65f9b13d1faf9a87ccca1f385e11cb513a4612be) Merge pull request NixOS/nixpkgs#116820 from deviant/bump-vsls
* [`7ea4ee71`](https://github.com/NixOS/nixpkgs/commit/7ea4ee71c993a615446b7e7a289337d819c93d77) Merge pull request NixOS/nixpkgs#112822 from deviant/localtime-user-allocation
* [`00cecf27`](https://github.com/NixOS/nixpkgs/commit/00cecf2731ad470adf0f5d71cc8200b57bdcafe6) skawarePackages: 2021-02 release
* [`af20ac46`](https://github.com/NixOS/nixpkgs/commit/af20ac46a8548a9c147bf85130c16af7ba617fe0) Merge pull request NixOS/nixpkgs#116786 from MatthewCroughan/freecad-flatmesh
* [`d00e4cd1`](https://github.com/NixOS/nixpkgs/commit/d00e4cd1feff75def05d1627abd95a5eccbdc0b9) Merge pull request NixOS/nixpkgs#115381 from rskew/master
* [`f2c5391c`](https://github.com/NixOS/nixpkgs/commit/f2c5391c41c1af5b904a389718f16dcd9f84d1db) reddsaver: 0.3.1 -> 0.3.2
* [`a49bfd13`](https://github.com/NixOS/nixpkgs/commit/a49bfd1368836e94ebe2cb66feef15a32cfb88b7) vimPlugins.nnn-vim: init at 2021-02-28
* [`a48b87fd`](https://github.com/NixOS/nixpkgs/commit/a48b87fda4291818e46f77b709d0f760fb6e9419) omnisharp-roslyn: fix outdated built-in msbuild for unity (NixOS/nixpkgs#98435)
* [`c1b57d68`](https://github.com/NixOS/nixpkgs/commit/c1b57d687356f98feaa891ae192d763947dda247) Merge pull request NixOS/nixpkgs#116837 from meutraa/update/android-studio
* [`83d35749`](https://github.com/NixOS/nixpkgs/commit/83d35749ff581592eb09058b257d3fcec374b78f) pytest-testmon: update 1.0.3 -> 1.1.0
* [`e30d87f2`](https://github.com/NixOS/nixpkgs/commit/e30d87f22237fe25618136eb9f818ecefaeb02a9) Merge pull request NixOS/nixpkgs#116840 from spacekookie/fix-rust-doc
* [`9e04298e`](https://github.com/NixOS/nixpkgs/commit/9e04298eff874511fc78341255c587db905cd2c0) Merge pull request NixOS/nixpkgs#116675 from r-ryantm/auto-update/1password
* [`6b92b911`](https://github.com/NixOS/nixpkgs/commit/6b92b911cfaf64be743efec52b0e20d1b96e1140) Merge pull request NixOS/nixpkgs#116713 from r-ryantm/auto-update/k6
* [`537732b5`](https://github.com/NixOS/nixpkgs/commit/537732b5a5ba282e3d01eeb275cd59ce74251a3c) Merge pull request NixOS/nixpkgs#116626 from r-ryantm/auto-update/janet
* [`883c5574`](https://github.com/NixOS/nixpkgs/commit/883c55748fa03834d182aeef5336b0627095e074) Merge pull request NixOS/nixpkgs#116807 from cole-h/nix
* [`14edfb4c`](https://github.com/NixOS/nixpkgs/commit/14edfb4cd7cc6a5a332318e37f1bf6a844b3e9c6) ocamlPackages.psq: use Dune 2
* [`d40f5813`](https://github.com/NixOS/nixpkgs/commit/d40f5813c7e17343bfcaf1ac557af4cb8db5c5d8) Merge pull request NixOS/nixpkgs#116844 from manojkarthick/reddsaver-v0.3.2
* [`8ff0b15f`](https://github.com/NixOS/nixpkgs/commit/8ff0b15fd8de83f4f2cbb3deb364851bdf0aa103) Merge pull request NixOS/nixpkgs#116845 from plabadens/vim-plugins
* [`fe7df3f3`](https://github.com/NixOS/nixpkgs/commit/fe7df3f3ff76fca22c4eefa0ce53eb9f6b1f64a2) Merge pull request NixOS/nixpkgs#116847 from raboof/pytest-testmon-update-1.0.3-to-1.1.0
* [`1ecb97ea`](https://github.com/NixOS/nixpkgs/commit/1ecb97eae93f6ea120ead7628da87c570f8074e2) Merge master into staging-next
* [`f5e8bdd0`](https://github.com/NixOS/nixpkgs/commit/f5e8bdd07d1afaabf6b37afc5497b1e498b8046f) Merge pull request NixOS/nixpkgs#115435 from NixOS/staging-next

nixpkgs: 8e1891d5b8d0b898db8890ddab73141f0cd3c2bc to 4e0d3868c679da20108db402785f924daa1a7fb5
* [`20f6436f`](https://github.com/NixOS/nixpkgs/commit/20f6436fd5e92cca18ced7eed68ce34e3571b562) Merge pull request NixOS/nixpkgs#116583 from r-ryantm/auto-update/python3.8-bx-python
* [`94bcca22`](https://github.com/NixOS/nixpkgs/commit/94bcca22ff7ac36df47b591fa8398eeb71d04b3d) Merge pull request NixOS/nixpkgs#116556 from r-ryantm/auto-update/PortfolioPerformance
* [`2445e9a6`](https://github.com/NixOS/nixpkgs/commit/2445e9a681c8450736514e331d99bfefe4648e0f) Merge branch 'master' into staging-next
* [`39534fc4`](https://github.com/NixOS/nixpkgs/commit/39534fc4ca6501e02be0e400e6b843ea002303e9) Merge pull request NixOS/nixpkgs#112993 from r-ryantm/auto-update/python3.7-ftfy
* [`f1d1f326`](https://github.com/NixOS/nixpkgs/commit/f1d1f326ba82249213a0addd89ed978fae0f7f47) Merge pull request NixOS/nixpkgs#112739 from r-ryantm/auto-update/python3.7-phonenumbers
* [`c048a536`](https://github.com/NixOS/nixpkgs/commit/c048a53666d98027ee2ec6df852b5c733164df42) Merge pull request NixOS/nixpkgs#112736 from r-ryantm/auto-update/python3.7-mergedeep
* [`35d53584`](https://github.com/NixOS/nixpkgs/commit/35d53584ff1453679d7ec95171422ec70dfa0a35) Merge pull request NixOS/nixpkgs#116727 from oxzi/python-ajsonrpc-1.1.0
* [`e2358832`](https://github.com/NixOS/nixpkgs/commit/e235883275789f2a52fc44f2ed7f268e2d574b53) Merge pull request NixOS/nixpkgs#116703 from iAmMrinal0/update/google-cloud-sdk
* [`80c7312d`](https://github.com/NixOS/nixpkgs/commit/80c7312da684a0713464313a744486b3b8d66587) Merge pull request NixOS/nixpkgs#116714 from fabaff/bump-pyinsteon
* [`532ba324`](https://github.com/NixOS/nixpkgs/commit/532ba32490aab7d72c7d6f517297e18335423d84) alttab: Enable doCheck
* [`ef2083cb`](https://github.com/NixOS/nixpkgs/commit/ef2083cb7a72d433e1ac378a67fdc10dc557eb36) google-cloud-sdk: Fix bash completion for gcloud, gsutil
* [`06c5ea2a`](https://github.com/NixOS/nixpkgs/commit/06c5ea2a148e3f3f9bc5e307a1ea92e056fcdd7f) liblapack: disable failing tests on darwin
* [`bcd7b0dd`](https://github.com/NixOS/nixpkgs/commit/bcd7b0dd5d6b48db6640888c6f791a4908568177) darwin/make-bootstrap-tools: avoid brotli dependency
* [`1c7f116d`](https://github.com/NixOS/nixpkgs/commit/1c7f116d1d4bed01185e68d97d5ed6f774684ca2) Merge pull request NixOS/nixpkgs#116537 from onsails/fix/rust-analyzer
* [`3a71547d`](https://github.com/NixOS/nixpkgs/commit/3a71547da6a2e0651a0af42a8f3f8cfea1b550fc) Merge pull request NixOS/nixpkgs#116719 from zowoq/kapp
* [`72daafa2`](https://github.com/NixOS/nixpkgs/commit/72daafa2e68d9a5e9c49662109d5bdf7cc452859) Merge pull request NixOS/nixpkgs#116720 from fabaff/bump-pymitv
* [`82b3b20d`](https://github.com/NixOS/nixpkgs/commit/82b3b20d729f0990574133fde43fa5c2eba901c6) fdtools: fix missing gcc -> $CC replacement
* [`7e5b76bb`](https://github.com/NixOS/nixpkgs/commit/7e5b76bb3b2dcb5d078c225c7cfed3ab1455d168) Merge pull request NixOS/nixpkgs#116488 from collares/sage-maintainers
* [`d4d14bd4`](https://github.com/NixOS/nixpkgs/commit/d4d14bd4b6790adca2c2883e0593cdb0525e9668) liblapack: disable select tests on all darwin platforms (NixOS/nixpkgs#116779)
* [`8497314b`](https://github.com/NixOS/nixpkgs/commit/8497314b8eaee8b43e06c79f02e9d3ac65a94336) Merge pull request NixOS/nixpkgs#116773 from r-burns/darwin-make-bootstrap
* [`6a31db4e`](https://github.com/NixOS/nixpkgs/commit/6a31db4e8fb3aa32da49608e5a83e48d331473dc) freecad: symlink uppercase executable names to lowercase in postFixup
* [`2ba25002`](https://github.com/NixOS/nixpkgs/commit/2ba25002285cc420cabddab2f101afadf8706f89) Merge pull request NixOS/nixpkgs#116759 from 06kellyjac/waypoint
* [`39bc2f7a`](https://github.com/NixOS/nixpkgs/commit/39bc2f7abe5c4eb71c6f47d974606467539e0354) gimp: Fix crash without dot
* [`f6d222e5`](https://github.com/NixOS/nixpkgs/commit/f6d222e5bb4dab35685f821d404ee5581469b0c5) python3Packages.minidump: 0.0.13 -> 0.0.15
* [`09bbc0bb`](https://github.com/NixOS/nixpkgs/commit/09bbc0bb1e4e2f9d2f0a0280ea6a59c66223800d) Merge pull request NixOS/nixpkgs#116787 from jtojnar/gimp-nodot
* [`2a32b0d2`](https://github.com/NixOS/nixpkgs/commit/2a32b0d28ba37b3cbe92eefbab3f815490246c1c) Merge pull request NixOS/nixpkgs#110262 from r-ryantm/auto-update/primesieve
* [`1a12223e`](https://github.com/NixOS/nixpkgs/commit/1a12223ef95d314d9bd23f7d44066862915646ca) Merge pull request NixOS/nixpkgs#111213 from r-ryantm/auto-update/filezilla
* [`c507cb42`](https://github.com/NixOS/nixpkgs/commit/c507cb42a84051882ee39ad778cdd64db8beb433) Merge pull request NixOS/nixpkgs#11673…
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.

packaging request: metadata anonymization toolkit 2
5 participants