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

stdenv: Fix regression on ARM+static when enabling hardening #115363

Merged
merged 1 commit into from
Mar 23, 2021

Conversation

samueldr
Copy link
Member

@samueldr samueldr commented Mar 7, 2021

Motivation for this change

4e9dc46 re-enabled hardening for Musl,
which is good.

Though static builds for ARM fail in various ways

  • cross armv7l static does not build
  • cross aarch64 static produces segfaulting dynamically linked binaries
  • native aarch64 static also produces segfaulting dynamically linked binaries

It seems that for native x86_64-linux, static builds are fine though.

This works around the issue by removing PIE from the hardening flags,
keeping all other hardening flags. This is an improvement (I think) from
before 4e9dc46.

Fixes #114953

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.

In addition to manual testing, a WIP testing harness within Mobile NixOS was used to verify things work.

I eventually plan to fold this concept into Nixpkgs proper, but to expedite testing being actually ran it's happening on that side-project.

@ofborg ofborg bot added the 6.topic: stdenv Standard environment label Mar 7, 2021
4e9dc46 re-enabled hardening for Musl,
which is good.

Though static builds for ARM fail in various ways

 - cross armv7l static does not build
 - cross aarch64 static produces segfaulting dynamically linked binaries
 - native aarch64 static also produces segfaulting dynamically linked binaries

It seems that for native x86_64-linux, static builds are fine though.

This works around the issue by removing PIE from the hardening flags,
keeping all other hardening flags. This is an improvement (I think) from
before 4e9dc46.

Fixes NixOS#114953
defaultHardeningFlags = if stdenv.hostPlatform.isMusl &&
# Except when:
# - static aarch64, where compilation works, but produces segfaulting dynamically linked binaries.
# - static armv7l, where compilation fails.
Copy link
Member Author

@samueldr samueldr Mar 7, 2021

Choose a reason for hiding this comment

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

Yes, the comment indent is weird.

It is not an error, but to keep the relevant comments close to the code.

If I didn't make the change to be the least intrusive in diffs, it would have looked like:

{/*...*/

defaultHardeningFlags =
  # Musl-based platforms will keep "pie", other platforms will not.
  if stdenv.hostPlatform.isMusl &&
    # Except when:
    #    - static aarch64, where compilation works, but produces segfaulting dynamically linked binaries.
    #    - static armv7l, where compilation fails.
    !((stdenv.hostPlatform.isAarch64 || stdenv.hostPlatform.isAarch32) && stdenv.hostPlatform.isStatic)
  then supportedHardeningFlags
  else lib.remove "pie" supportedHardeningFlags;

/*...*/}

I'm not exactly sure how I should format the comments around here to keep the relevant bits at the right location.

Copy link
Contributor

Choose a reason for hiding this comment

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

I think it may be a good idea to place the condition inside an( with stdenv.hostPlatform; /* ... */ ) block, e.g.:

{/*...*/
      defaultHardeningFlags = if (with stdenv.hostPlatform; isMusl &&
                                # Except when:
                                #    - static aarch64, where compilation works, but produces segfaulting dynamically linked binaries.
                                #    - static armv7l, where compilation fails.
                                !((isAarch64 || isAarch32) && isStatic))
                              then supportedHardeningFlags
                              else lib.remove "pie" supportedHardeningFlags;
/*...*/}

@samueldr samueldr added the 6.topic: cross-compilation Building packages on a different sort platform than than they will be run on label Mar 7, 2021
@samueldr samueldr marked this pull request as draft March 7, 2021 21:06
@samueldr
Copy link
Member Author

samueldr commented Mar 7, 2021

Converted to draft only to prevent an accidental merge. Once ofborg confirms this is a no-op outside of cross it will be safe to go in either master directly, or staging.

@samueldr samueldr marked this pull request as ready for review March 7, 2021 21:21
@samueldr
Copy link
Member Author

This PR still needs a review, thanks!

Copy link
Member

@veprbl veprbl left a comment

Choose a reason for hiding this comment

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

This looks good to me still.

The only comment that I have is that if static+pie doesn't work on arm, we might as well mark it as broken on anything that is not x86_64.

@samueldr
Copy link
Member Author

Note that I did not test non-static musl. Only static+musl (because static+musl is our pkgsStatic).

@veprbl veprbl merged commit 76552e9 into NixOS:master Mar 23, 2021
@samueldr samueldr deleted the fix/musl-arm-pie branch March 24, 2021 01:07
xorilog added a commit to xorilog/home that referenced this pull request Mar 26, 2021
home-manager: ddcd476603dfd3388b1dc8234fa9d550156a51f5 to fedfd430f96695997b3eaf8d7e82ca79406afa23
* [`fedfd430`](https://github.com/nix-community/home-manager/commit/fedfd430f96695997b3eaf8d7e82ca79406afa23) nixos/nix-darwin: switch sharedModules type to anything with custom check (rycee/home-manager#1880)

nixos: f8929dce13e729357f31d5b2950cbb097744bed7 to 34f85de51bbc74595e63b22ee089adbb31f7c7a2
* [`175e921a`](https://github.com/NixOS/nixpkgs/commit/175e921afa32e1d7d02c30acb0c9a6c249096bd7) glib: 2.64.5 -> 2.64.6
* [`8aabb847`](https://github.com/NixOS/nixpkgs/commit/8aabb847ab9350d94435454d21443a874fe289cd) openssh: 8.4p1 -> 8.5p1 and refactor
* [`86f8de44`](https://github.com/NixOS/nixpkgs/commit/86f8de440a584c08ba5dbcb246095107f762b90f) openssh_hpn/openssh_gssapi: Add CVE-2021-28041
* [`3f40a5fe`](https://github.com/NixOS/nixpkgs/commit/3f40a5fec5a482764bab186a4f666cc07d4d2141) libtiff: fix two security issues
* [`98445ff7`](https://github.com/NixOS/nixpkgs/commit/98445ff76c1581e24437e4ccfda91aa5f7bd245d) Merge pull request NixOS/nixpkgs#115439 from maxeaubrey/20.09_glib_2.64.6
* [`7b90c6f7`](https://github.com/NixOS/nixpkgs/commit/7b90c6f7e652b4d10c53f285c56ead7d77639ca9) Merge pull request NixOS/nixpkgs#116280 from mweinelt/20.09/libtiff
* [`1b521fd4`](https://github.com/NixOS/nixpkgs/commit/1b521fd4fc18f2e9c3f75eb7283cac613fe58250) python3Packages.aiohttp: 3.6.2 -> 3.6.3
* [`c27ce8cf`](https://github.com/NixOS/nixpkgs/commit/c27ce8cf72294b4f81c7b9292114630b033a69ef) python3Packages.aiohttp: patch CVE-2021-21330
* [`f83f17b4`](https://github.com/NixOS/nixpkgs/commit/f83f17b4ceebf892284a594e73c0557124973947) gns3-server: relax aiohttp dependency
* [`1e16bda5`](https://github.com/NixOS/nixpkgs/commit/1e16bda5ec74552a5a18a40eeeb3ea53855c13eb) python3Packages.django_2: 2.2.18 -> 2.2.19
* [`bf59c472`](https://github.com/NixOS/nixpkgs/commit/bf59c472412cc562b0b7de7cd7c5fcf6d5d728ea) popt: 1.16 -> 1.18
* [`d06b7975`](https://github.com/NixOS/nixpkgs/commit/d06b79757bd6ab73792e026810a422d9f3904f81) mupdf: format expression
* [`e934c5dc`](https://github.com/NixOS/nixpkgs/commit/e934c5dc497e909d1030a18278afd8ddecca1c52) mupdf: fix CVE-2021-3407
* [`44749ee8`](https://github.com/NixOS/nixpkgs/commit/44749ee89f9c628674e303eb618fa3a743459810) Merge pull request NixOS/nixpkgs#116431 from helsinki-systems/bp/openssh85
* [`ab8e2283`](https://github.com/NixOS/nixpkgs/commit/ab8e2283acf22552b3a94b81bb9b4ff6f08d96da) Merge pull request NixOS/nixpkgs#117082 from dotlambda/django_2-2.2.19
* [`653b9a14`](https://github.com/NixOS/nixpkgs/commit/653b9a14651eb8cd187b89241b0bb400e6abe2d9) Merge NixOS/nixpkgs#114192: gnutls: 3.6.15 -> 3.7.1
* [`f85d91e5`](https://github.com/NixOS/nixpkgs/commit/f85d91e5d5411d74a5446663a26a9b6a8c5c52ff) nettle: 3.6 -> 3.7.2 (security)
* [`a335aa65`](https://github.com/NixOS/nixpkgs/commit/a335aa65e2ec9d84fa7655814ee5da5c808722f4) Merge branch 'release-20.09' into staging-20.09
* [`5ce64bf7`](https://github.com/NixOS/nixpkgs/commit/5ce64bf762e963d9dd2170b0cc13bb50d2a10272) Merge pull request NixOS/nixpkgs#117020 from dotlambda/popt-1.18
* [`915c8b61`](https://github.com/NixOS/nixpkgs/commit/915c8b616c2c63bf23d31300f19117f7d101efce) adoptopenjdk-{13,14}: mark insecure
* [`daac3e63`](https://github.com/NixOS/nixpkgs/commit/daac3e63535fcfe364e1f8500581a6e8f0dc123e) steghide-0.5.1: mark as insecure
* [`b87a4966`](https://github.com/NixOS/nixpkgs/commit/b87a4966fd578eb01df0e9963e753af6e49d295f) Merge pull request NixOS/nixpkgs#117257 from ckauhaus/116923-steghide-insecure-20.09
* [`7f315ce4`](https://github.com/NixOS/nixpkgs/commit/7f315ce4bffe398ba32bbbb866b8fdd8b91616ea) Merge pull request NixOS/nixpkgs#116568 from mweinelt/20.09/python/aiohttp/CVE-2021-21330
* [`bd7a0e76`](https://github.com/NixOS/nixpkgs/commit/bd7a0e764f5d00be5c43d7ecea54b5591c4d37f0) gitea: 1.13.4 -> 1.13.5
* [`6968ac2b`](https://github.com/NixOS/nixpkgs/commit/6968ac2b07cac7909840254914f0e5c520787d27) matrix-synapse: 1.29.0 -> 1.30.0
* [`aecbb8a3`](https://github.com/NixOS/nixpkgs/commit/aecbb8a3966840b5e8499558fde04a7ea9b038e2) linux: 4.19.181 -> 4.19.182
* [`8f0d5848`](https://github.com/NixOS/nixpkgs/commit/8f0d58485e084ea092ccb01d28d737ede06caac4) linux: 5.10.24 -> 5.10.25
* [`8fa40fa6`](https://github.com/NixOS/nixpkgs/commit/8fa40fa62c9483e0d42cca7771baf180eafdc810) linux: 5.4.106 -> 5.4.107
* [`31bf776e`](https://github.com/NixOS/nixpkgs/commit/31bf776e369618e52475887fcaa513c54b1ef890) linux/hardened/patches/4.19: 4.19.181-hardened1 -> 4.19.182-hardened1
* [`358a0252`](https://github.com/NixOS/nixpkgs/commit/358a0252ee4420f2dafcb6250b15dc9b70557e24) linux/hardened/patches/5.10: 5.10.24-hardened1 -> 5.10.25-hardened1
* [`eb73dded`](https://github.com/NixOS/nixpkgs/commit/eb73dded7d168750c08ee2d697de4bb15dbb01d8) linux/hardened/patches/5.4: 5.4.106-hardened1 -> 5.4.107-hardened1
* [`aba07ee7`](https://github.com/NixOS/nixpkgs/commit/aba07ee7769c745e7de350ac4ed46d098ce8b18e) firefox: 86.0.1 -> 87.0
* [`4f45ee36`](https://github.com/NixOS/nixpkgs/commit/4f45ee3669a9a388c686f2935a1e2d5a2b4d0da2) firefox-esr: 78.8.0esr -> 78.9.0esr
* [`2c63c505`](https://github.com/NixOS/nixpkgs/commit/2c63c50541faed61a59789c31f033c8d78750ab2) nss_latest: 3.61 -> 3.62
* [`e2c12dfa`](https://github.com/NixOS/nixpkgs/commit/e2c12dfac7d7d9373152767f040da368f3e2ab54) unbound: 1.13.0 -> 1.13.1
* [`79d0fa49`](https://github.com/NixOS/nixpkgs/commit/79d0fa4967847cda6809faa35c0435a92fcc8b0c) salt: 3001.6 -> 3001.7
* [`146dce1d`](https://github.com/NixOS/nixpkgs/commit/146dce1d02811b589bc3a3db3a5a109756dd6000) Merge pull request NixOS/nixpkgs#117202 from hercules-ci/backport-20.09-unsupported-jdks
* [`2d1054e9`](https://github.com/NixOS/nixpkgs/commit/2d1054e98394c30a3c0820fc6b77f8c60049f057) Merge pull request NixOS/nixpkgs#117199 from dotlambda/CVE-2021-3407
* [`2dcd7948`](https://github.com/NixOS/nixpkgs/commit/2dcd7948df02f1bb4228b57f31b0dae6c67d7ffa) Merge pull request NixOS/nixpkgs#117393 from Flakebi/salt-20.09
* [`0120f5e5`](https://github.com/NixOS/nixpkgs/commit/0120f5e5b58e88b783b8149ed271a002e19babd3) discord: 0.0.13 -> 0.0.14
* [`36d15c7a`](https://github.com/NixOS/nixpkgs/commit/36d15c7a7cf78dfdc9080435a39f3c4f7721ef73) Revert "unbound: 1.13.0 -> 1.13.1"
* [`3deaa4b1`](https://github.com/NixOS/nixpkgs/commit/3deaa4b1b12eb1575abfeec8e0bd06a85d50ccfb) Re-apply "unbound: 1.13.0 -> 1.13.1"
* [`528264e0`](https://github.com/NixOS/nixpkgs/commit/528264e0c34c435f6b44e43b404e60d990cadb39) gitea: 1.13.5 -> 1.13.6
* [`d00458c9`](https://github.com/NixOS/nixpkgs/commit/d00458c986b6834e09090e13c3c3a0ab356a5904) gitea: normalise derivation format using `nixpkgs-fmt`
* [`a7fb8c10`](https://github.com/NixOS/nixpkgs/commit/a7fb8c105484622144ec4d41a6ad297afd6efa63) Merge pull request NixOS/nixpkgs#117363 from mweinelt/20.09/firefox
* [`f836ad47`](https://github.com/NixOS/nixpkgs/commit/f836ad4789f25e462bea83537174f2ffb3e4115e) vscode: fix download link
* [`9606c663`](https://github.com/NixOS/nixpkgs/commit/9606c663324d64b89b099c1114646e4f08a566ad) Merge pull request NixOS/nixpkgs#117479 from Synthetica9/backport-117473
* [`cf439ccb`](https://github.com/NixOS/nixpkgs/commit/cf439ccb91574cb2d870b1036f638dd13179b7a9) youtube-dl: 2021.03.14 -> 2021.03.25
* [`3e38babb`](https://github.com/NixOS/nixpkgs/commit/3e38babbc07f5b9362e34b0dff85d15a9fdf547f) traefik: add patch for CVE-2021-27375
* [`d395190b`](https://github.com/NixOS/nixpkgs/commit/d395190b24b27a65588f4539c423d9807ad8d4e7) wordpress: 5.5.3 -> 5.6.2
* [`006f2f48`](https://github.com/NixOS/nixpkgs/commit/006f2f480c7047d18b06ad1a49e893aea2050592) adoptopenjdk: 8.0.252 -> 8.0.272, 11.0.7 -> 11.0.9, add 14.0.2, add 15.0.1
* [`00564a7d`](https://github.com/NixOS/nixpkgs/commit/00564a7d091268ef4eba790523e177fad507ba76) adoptopenjdk-bin: 11.0.9 -> 11.0.10, 15.0.1 -> 15.0.2, 8.0.272 -> 8.0.282
* [`1c1c6c4b`](https://github.com/NixOS/nixpkgs/commit/1c1c6c4b00578900ca968d3767d1e4c051d23f09) Merge branch 'staging-20.09' into release-20.09
* [`2ea5e9b8`](https://github.com/NixOS/nixpkgs/commit/2ea5e9b81f41f35e69b9fa499fe925e85dd2d99b) Revert "adoptopenjdk-bin: 11.0.9 -> 11.0.10, 15.0.1 -> 15.0.2, 8.0.272 -> 8.0.282"
* [`dd46824d`](https://github.com/NixOS/nixpkgs/commit/dd46824d5552c1148684870d4b09080f8255dddb) Revert "adoptopenjdk: 8.0.252 -> 8.0.272, 11.0.7 -> 11.0.9, add 14.0.2, add 15.0.1"
* [`71394689`](https://github.com/NixOS/nixpkgs/commit/71394689602c3c38e4a51160a89ce8175e8da3d3) Merge pull request NixOS/nixpkgs#117586 from SuperSandro2000/fix-eval-20.09
* [`8dddd5a5`](https://github.com/NixOS/nixpkgs/commit/8dddd5a59cb3cbaa247a4cb63f6b0d60beac54b5) openssl: 1.1.1j -> 1.1.1k
* [`223d0d73`](https://github.com/NixOS/nixpkgs/commit/223d0d733a66b46504ea6b4c15f88b7cc4db58fb) Merge pull request NixOS/nixpkgs#117589 from mweinelt/20.09/openssl
* [`34f85de5`](https://github.com/NixOS/nixpkgs/commit/34f85de51bbc74595e63b22ee089adbb31f7c7a2) Merge pull request NixOS/nixpkgs#117536 from risicle/ris-traefik-CVE-2021-27375-r20.09

nixos-unstable: f5e8bdd07d1afaabf6b37afc5497b1e498b8046f to d3f7e969b9860fb80750147aeb56dab1c730e756
* [`0263b167`](https://github.com/NixOS/nixpkgs/commit/0263b16742a0580423b1dc4073db5fe08d2cc177) Merge pull request NixOS/nixpkgs#109036 from ryneeverett/freetube-init
* [`74ade33c`](https://github.com/NixOS/nixpkgs/commit/74ade33ccc2d3ad8b6662451ff498665bed41f6f) Merge pull request NixOS/nixpkgs#116806 from aanderse/kodi-team
* [`6fe6c35a`](https://github.com/NixOS/nixpkgs/commit/6fe6c35a9660a18cdf93b99f141a5b9a0eb06be5) kodi.packages.buildKodiAddon, kodi.packages.buildKodiBinaryAddon: include runHook preInstall and postInstall
* [`d9b776a3`](https://github.com/NixOS/nixpkgs/commit/d9b776a3a26a8a55dd1b531e331670dc6be15bc9) kodi.packages.jellyfin: init at 0.7.1
* [`ef2ac476`](https://github.com/NixOS/nixpkgs/commit/ef2ac47659e70aa5b94fc128ee273bfd52df79d7) python38Packages.avro: 1.10.1 -> 1.10.2
* [`e3e54e60`](https://github.com/NixOS/nixpkgs/commit/e3e54e6001d8c032daf8dc9b970fa509df0550a8) kodi.packages.netflix: add inputstream-adaptive dependency
* [`13bee29b`](https://github.com/NixOS/nixpkgs/commit/13bee29b9b7e8dc04e6212ceb2704530d38c86a9) restic: allow prune without backup
* [`342c7e72`](https://github.com/NixOS/nixpkgs/commit/342c7e724eb7fb1f60da3eaf082cfe6ea0df1e8f) Merge pull request NixOS/nixpkgs#117034 from aanderse/kodi-jellyfin
* [`ad993257`](https://github.com/NixOS/nixpkgs/commit/ad993257cee05aee7ef9b2aecaf6a1b99ffeac25) python38Packages.jupyterlab: 3.0.11 -> 3.0.12
* [`dc562d25`](https://github.com/NixOS/nixpkgs/commit/dc562d2588f9024afb1835caa3421597fd7da2f2) python38Packages.icmplib: 2.0.2 -> 2.1.1
* [`5a251359`](https://github.com/NixOS/nixpkgs/commit/5a251359a84fe15a09a65ab5ade220de525dd693) catatonit: add `passthru.tests` and `teams.podman`
* [`c77069b4`](https://github.com/NixOS/nixpkgs/commit/c77069b412bc630640554a8abcf369fc04611d73) hecate: remove platforms
* [`d830ceb9`](https://github.com/NixOS/nixpkgs/commit/d830ceb9675e6c8dee968b95000ee7329cdc2130) manuskript: expand platforms to unix
* [`c1f24ffe`](https://github.com/NixOS/nixpkgs/commit/c1f24ffe0900ba778ebe345c4fac0e8c171a6414) disfetch: 1.20 -> 1.21
* [`a88356cb`](https://github.com/NixOS/nixpkgs/commit/a88356cbbe71f722d0ac57f66f9afa53aeda5f27) Merge pull request NixOS/nixpkgs#97048 from bluecmd/patch-1
* [`062e1ffa`](https://github.com/NixOS/nixpkgs/commit/062e1ffa1ba918c2c94a5988c60765247c0aa95c) bento4: expand platforms to unix
* [`d3c2b7f2`](https://github.com/NixOS/nixpkgs/commit/d3c2b7f2768eaf0b3c08704efa4bd3b649aedc98) gopro: expand platforms to unix
* [`3b6b27d5`](https://github.com/NixOS/nixpkgs/commit/3b6b27d56a4ef9199974ea94d21b1a9d51b008f8) flow: 0.146.0 -> 0.147.0
* [`0e098672`](https://github.com/NixOS/nixpkgs/commit/0e098672b6614999dd5d454b4a2ecfcf022557e7) flow: enable on aarch64
* [`d7743bab`](https://github.com/NixOS/nixpkgs/commit/d7743bab1529700ebd145ea9dfdde6aef63caa13) Merge pull request NixOS/nixpkgs#116914 from r-ryantm/auto-update/go-protobuf
* [`d49a594a`](https://github.com/NixOS/nixpkgs/commit/d49a594a8dffb525cbb1cc1571f65850eb263564) Merge pull request NixOS/nixpkgs#117144 from symphorien/dot-merlin-reader-ocaml-lsp
* [`1a12ffa3`](https://github.com/NixOS/nixpkgs/commit/1a12ffa3b320b60dfc69a59ed53514936a665823) urn: all platforms
* [`575e853b`](https://github.com/NixOS/nixpkgs/commit/575e853bd946f3d80465cb842cfc24d8da4a13d2) clooj: add platforms
* [`7093e238`](https://github.com/NixOS/nixpkgs/commit/7093e238c77428a497e19fd2370ead13f922c2b6) getmail6: 6.14 -> 6.15
* [`b773fd7e`](https://github.com/NixOS/nixpkgs/commit/b773fd7e2ac623c2a17f66326dffc0415dbf5e50) fet-sh: 1.8 -> 1.9
* [`8a55c90c`](https://github.com/NixOS/nixpkgs/commit/8a55c90c165ab23ff5f8b85fbd7dabdcfafadd9b) gleam: 0.14.2 -> 0.14.3
* [`ea39c3dd`](https://github.com/NixOS/nixpkgs/commit/ea39c3ddaba7e2d27df720eb8b4decbcd9c97e0f) gnome-user-docs: expand platforms to all
* [`b8e095cb`](https://github.com/NixOS/nixpkgs/commit/b8e095cb106aaa9012906d655e3bf10ee0e62048) nerdctl: 0.7.1 -> 0.7.2
* [`30806da8`](https://github.com/NixOS/nixpkgs/commit/30806da83e54e9a15a84cd5e9123ce97aecc6601) go-task: 3.2.2 -> 3.3.0
* [`c7766c57`](https://github.com/NixOS/nixpkgs/commit/c7766c57338740867cf16f27af0456b1eed51dcf) goreleaser: 0.159.0 -> 0.160.0
* [`55ce4c9b`](https://github.com/NixOS/nixpkgs/commit/55ce4c9b039b2e13ca3aede82e17667b9a6e9b71) rmtrash: use stdenvNoCC
* [`8e86eec6`](https://github.com/NixOS/nixpkgs/commit/8e86eec6de99d8b7b49044a40f7ddaf3d3ff494a) pdf-parser: expand platforms to all
* [`4eda69a8`](https://github.com/NixOS/nixpkgs/commit/4eda69a8ec58983a7cbc9a2b78f661266bad812d) kargo: expand platforms to all
* [`9398fc3c`](https://github.com/NixOS/nixpkgs/commit/9398fc3c27e9002da348e7db92c617a0dd6bcf8b) profile-cleaner: expand platforms to all
* [`a1b2b122`](https://github.com/NixOS/nixpkgs/commit/a1b2b1225c7196428dff004a23393265e7803e11) ocamlPackages.npy: unstable-2019-04-02 → 0.0.9
* [`613b85bb`](https://github.com/NixOS/nixpkgs/commit/613b85bb1d5c2bfc0c45fc5087ba638627a430f1) linuxPackages.acpi_call: set meta.license and meta.homepage
* [`b25fee28`](https://github.com/NixOS/nixpkgs/commit/b25fee2862f7bd866c9f5970610690fc83c56cb0) Merge pull request NixOS/nixpkgs#112497 from sikmir/cudatext
* [`335412e8`](https://github.com/NixOS/nixpkgs/commit/335412e81c314fd16e4ce2e5ec7699a36ee035d3) Merge pull request NixOS/nixpkgs#112530 from evenbrenden/retext-fix-xdg-desktop
* [`7fdf3c30`](https://github.com/NixOS/nixpkgs/commit/7fdf3c30a7c71fee14a6d8a961ca46a8761d2bf1) gitlab-runner: 13.9.0 -> 13.10.0
* [`cda3ea1b`](https://github.com/NixOS/nixpkgs/commit/cda3ea1b7283448d3116212a377b79c45569352c) bearssl: init at 0.6
* [`841b753e`](https://github.com/NixOS/nixpkgs/commit/841b753e92328f639eb1cb2ccbb7b5cebd733258) s6-networking: default to bearssl
* [`3a25004f`](https://github.com/NixOS/nixpkgs/commit/3a25004f2b33b64b9292d923b1a6257b517157a7) neovim-qt-unwrapped: init at 2.16.1
* [`810d22fb`](https://github.com/NixOS/nixpkgs/commit/810d22fb35287e14125470e3b917b90488ae5ed5) Merge pull request NixOS/nixpkgs#111975 from teto/bazel-execlog
* [`f373e178`](https://github.com/NixOS/nixpkgs/commit/f373e17810c309fbf1ba64e6606f6c64548abefb) newsboat: 2.22.1 -> 2.23
* [`934c84be`](https://github.com/NixOS/nixpkgs/commit/934c84bee34c643c86a57d64c3894e7b1b2d2a59) jbang: 0.67.3 -> 0.68.0
* [`2fc0c3ea`](https://github.com/NixOS/nixpkgs/commit/2fc0c3ea3b84eab514aa65474db854061cd06fc4) k9s: 0.24.2 -> 0.24.3
* [`e1bb6ce4`](https://github.com/NixOS/nixpkgs/commit/e1bb6ce4eac378de417ef9c5c2924ee9c373e70c) rtmidi: Add patch for header location
* [`6c5ca9c3`](https://github.com/NixOS/nixpkgs/commit/6c5ca9c3eb5debc7f7f641ee40dfb27edc0396e8) coqPackages.coq-elpi: 1.6.0 -> 1.6.1
* [`418ab633`](https://github.com/NixOS/nixpkgs/commit/418ab6338ed0adc864ef3ee4d2a71c3b54f12880) libcint: 4.1.0 -> 4.1.1
* [`e905e228`](https://github.com/NixOS/nixpkgs/commit/e905e228ef924fe7a75d502b2c84629e19c9774d) Merge pull request NixOS/nixpkgs#117190 from siraben/darwin-mass-fix-buildInputs=0
* [`d41fc7b4`](https://github.com/NixOS/nixpkgs/commit/d41fc7b44295c59553c87d61b26200357106b8de) Merge pull request NixOS/nixpkgs#117152 from mweinelt/bird2
* [`d3e65f1a`](https://github.com/NixOS/nixpkgs/commit/d3e65f1a42f2b25c43c38fd9546779a084be62ad) Merge pull request NixOS/nixpkgs#117197 from dotlambda/newsboat-2.23
* [`e3cc60df`](https://github.com/NixOS/nixpkgs/commit/e3cc60dfe7dedc7f56d2779a12a321bb68dae87b) Merge pull request NixOS/nixpkgs#117153 from 06kellyjac/deno
* [`ff64acac`](https://github.com/NixOS/nixpkgs/commit/ff64acacba6fc39ca73d274e0645149e6018fbc1) sumo: init at 1.8.0
* [`6f9ac9eb`](https://github.com/NixOS/nixpkgs/commit/6f9ac9eb8a37b562531ddd1d4d16e8c401447445) Merge pull request NixOS/nixpkgs#117184 from siraben/fet-sh-update
* [`66955e1f`](https://github.com/NixOS/nixpkgs/commit/66955e1f4102668a9c54a484ad6a8e7acfd58f5c) Merge pull request NixOS/nixpkgs#117186 from 06kellyjac/nerdctl
* [`64ed9a9a`](https://github.com/NixOS/nixpkgs/commit/64ed9a9a999bf1f8d44f8fb8dd2ee307de1aa3de) Merge pull request NixOS/nixpkgs#116247 from tfmoraes/meshlab-20.12
* [`eed48749`](https://github.com/NixOS/nixpkgs/commit/eed487494f676c000f4f992661d106aaa854bb05) libplctag: 2.3.5 -> 2.3.6
* [`5b8a0c92`](https://github.com/NixOS/nixpkgs/commit/5b8a0c92fed8d94ee291ab2e7454c99f395c2a4f) openjdk/darwin: move version out of name
* [`4e51f855`](https://github.com/NixOS/nixpkgs/commit/4e51f855e5ddbc7b8c428b645e79c3e2ea1f99e8) pythonPackages.colorlog: 4.7.2 -> 4.8.0
* [`7a6961b6`](https://github.com/NixOS/nixpkgs/commit/7a6961b69c018afdb688ea15ff12902cb30011ef) Merge pull request NixOS/nixpkgs#117203 from OPNA2608/fix/rtmidi-cmake-pr-patch/21.05
* [`d7bba3e5`](https://github.com/NixOS/nixpkgs/commit/d7bba3e5da287ae8ea5cf0c510e74d6c126ff51e) firefox-bin: 86.0.1 -> 87.0
* [`f2b936ed`](https://github.com/NixOS/nixpkgs/commit/f2b936edf58e999637927994244d3cad5aef84d9) Merge pull request NixOS/nixpkgs#117173 from r-ryantm/auto-update/disfetch
* [`971b497a`](https://github.com/NixOS/nixpkgs/commit/971b497a470c1a1931c36fd6ac58c72a46bf85f0) minizinc: 2.5.4 -> 2.5.5
* [`db2ca9b1`](https://github.com/NixOS/nixpkgs/commit/db2ca9b10c1438b8dd9afe23648ee382eb3e584c) pythonPackages.easygui: fix build
* [`d8646dae`](https://github.com/NixOS/nixpkgs/commit/d8646daef12badd9696c757307eddb4979e7967b) python3Packages.tatsu: 5.5.0 -> 5.6.0
* [`0fb737d1`](https://github.com/NixOS/nixpkgs/commit/0fb737d19b5c13794a54b91d6774517994ceeb72) Merge pull request NixOS/nixpkgs#116234 from r-ryantm/auto-update/zef
* [`d78cb9fc`](https://github.com/NixOS/nixpkgs/commit/d78cb9fc184bc9f4e3d046ed0175734950fd0342) Merge pull request NixOS/nixpkgs#117139 from stigtsp/package/perl-5.33.8
* [`9cbd510c`](https://github.com/NixOS/nixpkgs/commit/9cbd510c2175996265aa7583600c90a92afd2a0f) coursier: 2.0.14 -> 2.0.15
* [`2af47fc8`](https://github.com/NixOS/nixpkgs/commit/2af47fc86ac2f57bb3a8ac40ee374fcc3a3bcd4a) Merge pull request NixOS/nixpkgs#117179 from r-ryantm/auto-update/flow
* [`4048b39f`](https://github.com/NixOS/nixpkgs/commit/4048b39fc1a5c17b4c5052a74a84f3c75c5425e6) nixos/modules/inspircd: add simplistic module and nixos test
* [`66454f0e`](https://github.com/NixOS/nixpkgs/commit/66454f0e5a1720b8ac9886ef79ce863b8f6ee0a0) !fixup get rid of trailing comment hack
* [`726db56d`](https://github.com/NixOS/nixpkgs/commit/726db56d68cc5c017b9fe58600543825655f362e) !fixup simplify zipListsWith call
* [`04a37553`](https://github.com/NixOS/nixpkgs/commit/04a37553f2fcd6f2f513b8e81b7e8e20ebf62d2b) Merge pull request NixOS/nixpkgs#114821 from erosennin/catatonit
* [`e9dbf1a5`](https://github.com/NixOS/nixpkgs/commit/e9dbf1a586311b1dc8c601e5e86ff0c0da0c0639) firefox: 86.0.1 -> 87.0
* [`9a0519f0`](https://github.com/NixOS/nixpkgs/commit/9a0519f0805c9134c58c622fc1792eee8a051cbc) firefox-esr: 78.8.0esr -> 78.9.0esr
* [`84a51159`](https://github.com/NixOS/nixpkgs/commit/84a511591890311683ad880c5120110cafb3183a) osu-lazer: 2021.312.0 -> 2021.320.0
* [`19225b86`](https://github.com/NixOS/nixpkgs/commit/19225b869015d37a14d7c6604a7ef89808d270eb) !fixup add nixos tests to passthru.tests
* [`76d9fe76`](https://github.com/NixOS/nixpkgs/commit/76d9fe7629036a065b80d795ec7a3405ea7bd232) !fixup add myself as maintainer for the module
* [`9007023a`](https://github.com/NixOS/nixpkgs/commit/9007023a70039eab3bb1b47a507c9129a455f680) Merge pull request NixOS/nixpkgs#116932 from AndersonTorres/new-scimark
* [`f4068932`](https://github.com/NixOS/nixpkgs/commit/f4068932bf0f6c1c502fdb3d6996ce3d58688d9a) python39Packages.rope: fix tests
* [`ebb6205c`](https://github.com/NixOS/nixpkgs/commit/ebb6205c7a05f909e0efd7da7adb0ab3d9ab106a) sccache: remove platforms and fix darwin build
* [`bef62e8c`](https://github.com/NixOS/nixpkgs/commit/bef62e8c81db43973597a62f8b35896ea80ece0a) Merge pull request NixOS/nixpkgs#114752 from hercules-ci/lazy-offline-acme
* [`4a8aaa58`](https://github.com/NixOS/nixpkgs/commit/4a8aaa58adf7d918f9b6c9d9293d261e24ea2dc7) firefox, firefox-esr: add myself to maintainers
* [`09fbb851`](https://github.com/NixOS/nixpkgs/commit/09fbb851bafa30b42673633a2d7ffd2f8f8387eb) python3Packages.botocore: 1.20.30 -> 1.20.33
* [`5e58c25e`](https://github.com/NixOS/nixpkgs/commit/5e58c25e5d21ee9daac002584b1d5f3cff05889b) python3Packages.boto3: 1.17.30 -> 1.17.33
* [`84dcedc0`](https://github.com/NixOS/nixpkgs/commit/84dcedc0757ac1cde13bf6afbd62b49d7a734284) awscli: 1.19.30 -> 1.19.33
* [`2b60c83e`](https://github.com/NixOS/nixpkgs/commit/2b60c83e3345e34236f05024d93975eedf539f63) seaweedfs: 2.32 -> 2.34
* [`321318e5`](https://github.com/NixOS/nixpkgs/commit/321318e51a06faeaf7fedb612b7ace51c4410512) kakounePlugins.kak-ansi: 0.2.1 -> 0.2.3
* [`35d802b2`](https://github.com/NixOS/nixpkgs/commit/35d802b26bafcd1e9f58d861b008db195ca57310) Merge pull request NixOS/nixpkgs#117193 from max-wittig/patch-8
* [`dd616b97`](https://github.com/NixOS/nixpkgs/commit/dd616b9705267a6ae26ecb2370d97dcc49b6862e) matrix-synapse: 1.29.0 -> 1.30.0
* [`5a059bdf`](https://github.com/NixOS/nixpkgs/commit/5a059bdf624cb15f70e9c178d96402345cc9d995) Merge pull request NixOS/nixpkgs#117223 from dotlambda/tatsu-5.6.0
* [`57ca4097`](https://github.com/NixOS/nixpkgs/commit/57ca40976cce458f5d1952f8afc6c59f1a4c4c1d) dasel: 1.13.4 -> 1.13.5
* [`b9bb7add`](https://github.com/NixOS/nixpkgs/commit/b9bb7add79c7810b9c79f39a29b32485f8c8c3bb) chezmoi: 1.8.11 -> 2.0.3
* [`082a4995`](https://github.com/NixOS/nixpkgs/commit/082a499556db7a4998f3755859de44123b38fc07) unciv: 3.13.8 -> 3.13.10
* [`9334a297`](https://github.com/NixOS/nixpkgs/commit/9334a29720c76dcfdbc54ec9e8703473aa1729d8) Merge pull request NixOS/nixpkgs#116811 from jansol/pipewire
* [`16302209`](https://github.com/NixOS/nixpkgs/commit/16302209c287f42b4305d7bd9a660bd5206189bb) steghide-0.5.1: remove package
* [`6a0b9d69`](https://github.com/NixOS/nixpkgs/commit/6a0b9d6992f389b05abe88d805ce3cc318b87869) faraday-{lwt,lwt-unix,async}: add Faraday runtimes
* [`2198f3b0`](https://github.com/NixOS/nixpkgs/commit/2198f3b0a23d70dbe14a1c29127fd286c4c6a063) xchm: 1.31 -> 1.32
* [`6ef42d46`](https://github.com/NixOS/nixpkgs/commit/6ef42d462284e5ffa0312814d0f6645136dc4fd2) rapid-photo-downloader: specify license
* [`db48ea25`](https://github.com/NixOS/nixpkgs/commit/db48ea25d21e5fca3bff8c924994512b366419b7) Merge pull request NixOS/nixpkgs#117220 from dotlambda/easygui
* [`47576a42`](https://github.com/NixOS/nixpkgs/commit/47576a42adf0d8969d209749c372b483935b82e0) vimPlugins: update
* [`3dfc03d1`](https://github.com/NixOS/nixpkgs/commit/3dfc03d1b8d7f4723e12d10a067f5c0df1928bc1) vimPlugins.registers-nvim: init at 2021-03-21
* [`d70781f1`](https://github.com/NixOS/nixpkgs/commit/d70781f1039a539599a63204787a9a67f8c01990) Merge pull request NixOS/nixpkgs#117255 from ckauhaus/116923-remove-steghide
* [`96b7afb4`](https://github.com/NixOS/nixpkgs/commit/96b7afb496d4a4bb65e54ee0c12b315906d2b620) bdf2psf: 1.201 -> 1.202
* [`b2aa5f1b`](https://github.com/NixOS/nixpkgs/commit/b2aa5f1b32467e9348ec3ad8b8c5b1cf65472339) perlPackages.libapreq2: 2.13 -> 2.16
* [`5c8ed06f`](https://github.com/NixOS/nixpkgs/commit/5c8ed06fc9dbdf92681101d4fd91c690293ae007) systemd: allow custom unit folders to be configured with SYSTEMD_UNIT_PATH
* [`57c2d4f2`](https://github.com/NixOS/nixpkgs/commit/57c2d4f2994c20e364d961ffadc554d7f657e2e1) moonlight-qt: init at 3.1.0 (NixOS/nixpkgs#117049)
* [`0ee851c4`](https://github.com/NixOS/nixpkgs/commit/0ee851c4be3d235d3bf6b7f3ce082a77f5c4b871) Merge pull request NixOS/nixpkgs#117149 from aanderse/redmine
* [`a3fec5f8`](https://github.com/NixOS/nixpkgs/commit/a3fec5f8cd00b0feb196979a4f51a9ca7b050e8f) aws-vault: 6.2.0 -> 6.3.0 (NixOS/nixpkgs#117006)
* [`b930639c`](https://github.com/NixOS/nixpkgs/commit/b930639c9020b004e43eb3f462459926bace319a) Merge pull request NixOS/nixpkgs#117263 from fabaff/license-rapid-photo-downloader
* [`815514f4`](https://github.com/NixOS/nixpkgs/commit/815514f447868d216824176db98e64a3c6d01eea) home-assistant: fix github tag of iaqualink-py
* [`2bb10a16`](https://github.com/NixOS/nixpkgs/commit/2bb10a1617e33a69bffdd1de9046703158809ea0) Merge pull request NixOS/nixpkgs#116776 from sternenseemann/fdtools-fix-gcc-clang
* [`65840088`](https://github.com/NixOS/nixpkgs/commit/65840088d6f03945a6da043221ffa065306ab19e) Merge pull request NixOS/nixpkgs#117254 from r-ryantm/auto-update/unciv
* [`04bd5af2`](https://github.com/NixOS/nixpkgs/commit/04bd5af2a746eedf4c46c32c226ea74723f324d0) Merge pull request NixOS/nixpkgs#117237 from siraben/sccache-platforms
* [`7ccfe2be`](https://github.com/NixOS/nixpkgs/commit/7ccfe2be6ad9a5202e62cfba6b1c50601010bbad) Merge pull request NixOS/nixpkgs#115679 from r-ryantm/auto-update/liburcu
* [`ce63f70f`](https://github.com/NixOS/nixpkgs/commit/ce63f70f311324bc7ac61e4a82d81d17ec594c00) Merge pull request NixOS/nixpkgs#117272 from SuperSandro2000/ha-fix
* [`fdb83b81`](https://github.com/NixOS/nixpkgs/commit/fdb83b81b2e6c0a413619431863e7163977e835d) Merge pull request NixOS/nixpkgs#116205 from r-ryantm/auto-update/symengine
* [`64b9e861`](https://github.com/NixOS/nixpkgs/commit/64b9e86178bbc7230d9526385bd1ee891d749280) trilium: 0.45.10 -> 0.46.5
* [`31e4678c`](https://github.com/NixOS/nixpkgs/commit/31e4678c6b883d673f712bc9f5c8e4099e8ea324) Merge pull request NixOS/nixpkgs#117214 from siraben/openjdk-darwin-eval
* [`8fc94235`](https://github.com/NixOS/nixpkgs/commit/8fc942356501c14fc3e632c7c41ad3c26ac57a3d) Merge pull request NixOS/nixpkgs#116455 from svanderburg/systemdunitpath
* [`f4430c23`](https://github.com/NixOS/nixpkgs/commit/f4430c23a4a52be4fe338da2f9e4013d38fe6bde) Merge pull request NixOS/nixpkgs#117226 from dotlambda/colorlog-4.8.0
* [`0435d264`](https://github.com/NixOS/nixpkgs/commit/0435d2645033b802133059b3283f2fe1079ee09d) vscode-extensions.redhat.java: fix versionAtLeast invocation
* [`e0c05e18`](https://github.com/NixOS/nixpkgs/commit/e0c05e18ae7398a94df0371787899c87245b2bbf) Merge pull request NixOS/nixpkgs#117267 from r-ryantm/auto-update/bdf2psf
* [`67493c1a`](https://github.com/NixOS/nixpkgs/commit/67493c1ad41ad7951a0624fe4286382066d4ee42) eksctl: 0.40.0 -> 0.41.0
* [`5faa0294`](https://github.com/NixOS/nixpkgs/commit/5faa02940a9cdd002f7bcf1ab85f7e4cba1077ba) velero: add darwin as supported platform (NixOS/nixpkgs#117278)
* [`a42d2233`](https://github.com/NixOS/nixpkgs/commit/a42d22339f7b795ccd7f7c3696437cfb00dd5601) python3Packages.pydeconz: init at 77
* [`3f2e683c`](https://github.com/NixOS/nixpkgs/commit/3f2e683ca1798684376ad99b249e7f7628a57424) home-assistant: update component-packages
* [`b6f41fc3`](https://github.com/NixOS/nixpkgs/commit/b6f41fc3513c6afeb70bf4ff596d9907f5bbc3cb) home-assistant: enable deconz tests
* [`a344386c`](https://github.com/NixOS/nixpkgs/commit/a344386cc4ca8af81c7af04f494c3aaf8afe03f9) haskellPackages.darcs: unbreak
* [`75416399`](https://github.com/NixOS/nixpkgs/commit/75416399505e0d355870479779ec55eceb4b37c7) python3Packages.pysma: 0.3.5 -> 0.4
* [`8bc8a51c`](https://github.com/NixOS/nixpkgs/commit/8bc8a51c0469ec0beaf8d8e24ea2533381fb4492) home-assistant: enable sma tests
* [`afb1275b`](https://github.com/NixOS/nixpkgs/commit/afb1275b84e2b67eec371925715c8615134d0244) python3Packages.subarulink: 0.3.12 -> 0.3.13
* [`99235e55`](https://github.com/NixOS/nixpkgs/commit/99235e5560dbb555d7a61dd2d8c3256b6bf2a58f) home-assistant: enable subaru tests
* [`2e110025`](https://github.com/NixOS/nixpkgs/commit/2e110025a83d83b50ab3a62432219a0a72e5b291) Merge pull request NixOS/nixpkgs#117302 from fabaff/bump-subarulink
* [`55b7888f`](https://github.com/NixOS/nixpkgs/commit/55b7888f43fe39ef672d6a6dcf5dd23aa2fc0502) Merge pull request NixOS/nixpkgs#117298 from fabaff/pydeconz
* [`a3d42178`](https://github.com/NixOS/nixpkgs/commit/a3d421785731468c40bf0f05e1a6f100fb265fa5) shellhub-agent: 0.5.2 -> 0.6.0
* [`e6bab7c0`](https://github.com/NixOS/nixpkgs/commit/e6bab7c0dc8a6832ce74280950d0e1f9cff544f7) cargo-valgrind: 1.3.0 -> 2.0.0
* [`36832990`](https://github.com/NixOS/nixpkgs/commit/368329907b44dcf99ceabf52a260f28287c16961) Merge pull request NixOS/nixpkgs#117300 from fabaff/bump-pysma
* [`f0f79f76`](https://github.com/NixOS/nixpkgs/commit/f0f79f76430c5fd4d8a77ef24912eb3604f6c817) codeowners: add sternenseemann for haskell
* [`0088d952`](https://github.com/NixOS/nixpkgs/commit/0088d95227b540775e0419f78c07b756f3cab346) Merge pull request NixOS/nixpkgs#112802 from r-ryantm/auto-update/libupnp
* [`4846980e`](https://github.com/NixOS/nixpkgs/commit/4846980e2360fc07d4cb5c579b4a2afcf2c314fa) Merge pull request NixOS/nixpkgs#116768 from jluttine/update-linphone
* [`238fba1b`](https://github.com/NixOS/nixpkgs/commit/238fba1b71ffdd45bc9c8c8b6717594f336cb502) Merge pull request NixOS/nixpkgs#117231 from dotlambda/rope-fix
* [`447fb4c9`](https://github.com/NixOS/nixpkgs/commit/447fb4c9045862f74ef7348742a8c09328a923fb) Merge pull request NixOS/nixpkgs#117031 from chvp/fix-mu-scripts
* [`09fb0da4`](https://github.com/NixOS/nixpkgs/commit/09fb0da4651099d0030147eb3e4235abbcaa038d) Merge pull request NixOS/nixpkgs#117241 from NeQuissimus/awscli
* [`6c75cc15`](https://github.com/NixOS/nixpkgs/commit/6c75cc158464262b547b2f69a8514f09fb258f16) Merge pull request NixOS/nixpkgs#117247 from eraserhd/kak-ansi-0.2.3
* [`dc4e5654`](https://github.com/NixOS/nixpkgs/commit/dc4e5654b4d89477ab4e108d3bc46d1549f7627e) Merge pull request NixOS/nixpkgs#117250 from 0x4A6F/master-dasel
* [`fd45ac69`](https://github.com/NixOS/nixpkgs/commit/fd45ac69d37d1f9409164c8bd49b6c5ce50a32cb) Merge pull request NixOS/nixpkgs#117251 from jhillyerd/chezmoi
* [`b8ed926d`](https://github.com/NixOS/nixpkgs/commit/b8ed926d781606701c815941e981554c60add558) Merge pull request NixOS/nixpkgs#117270 from aanderse/libapreq2
* [`6b815bbb`](https://github.com/NixOS/nixpkgs/commit/6b815bbb99d51230cf1b792a839f92acb74515e1) nixos/systemd: missing a few units for KDE to use systemd
* [`97c52d57`](https://github.com/NixOS/nixpkgs/commit/97c52d5782aff9145b486307168aa03715d49690) grub: 2.0.4 -> 2.0.6-rc1
* [`c850fc86`](https://github.com/NixOS/nixpkgs/commit/c850fc863a5888c5db458f79778eeef549c35a4a) Merge pull request NixOS/nixpkgs#117249 from otavio/otavio-pkg-updates
* [`7eda163e`](https://github.com/NixOS/nixpkgs/commit/7eda163eac253fd03cd8ff3d2ab08f96d2dab8d3) Merge pull request NixOS/nixpkgs#115310 from mweinelt/grub2
* [`e9eee4a9`](https://github.com/NixOS/nixpkgs/commit/e9eee4a91d181828a8fc5c009ac62ca3ae108033) openimageio2: 2.1.9.0 -> 2.2.12.0
* [`3bf443d4`](https://github.com/NixOS/nixpkgs/commit/3bf443d46accd046959e33a6adab797fac5af947) openimageio: fix build error
* [`8fe3b438`](https://github.com/NixOS/nixpkgs/commit/8fe3b43891fee0ea295cbe9a3983e613af2def40) blender: fix build error
* [`dd9f1912`](https://github.com/NixOS/nixpkgs/commit/dd9f191289e01116b50e49c04b9e201779a0dad5) filezilla: 3.52.2 -> 3.53.0
* [`c1721401`](https://github.com/NixOS/nixpkgs/commit/c1721401e3b2a3b4ad96d4dcd744ce74a8d652c4) Merge pull request NixOS/nixpkgs#117294 from r-ryantm/auto-update/eksctl
* [`100549df`](https://github.com/NixOS/nixpkgs/commit/100549dfaa30a326110a5c4fbafdd9ede988ef1a) Merge pull request NixOS/nixpkgs#117260 from r-ryantm/auto-update/xchm
* [`df6f49f6`](https://github.com/NixOS/nixpkgs/commit/df6f49f63991a16acce2e85a7eb029744a151102) Merge pull request NixOS/nixpkgs#117232 from r-ryantm/auto-update/osu-lazer
* [`444ca81f`](https://github.com/NixOS/nixpkgs/commit/444ca81fafe324f4790df6db5e4335c0a017ae11) Merge pull request NixOS/nixpkgs#117189 from r-ryantm/auto-update/goreleaser
* [`76330f83`](https://github.com/NixOS/nixpkgs/commit/76330f830ce605fe76fa89589aa3712783330931) Merge pull request NixOS/nixpkgs#117187 from r-ryantm/auto-update/go-task
* [`74fc4647`](https://github.com/NixOS/nixpkgs/commit/74fc46475ab617f498d73efdbce35d00c9d45933) Merge pull request NixOS/nixpkgs#117211 from r-ryantm/auto-update/libplctag
* [`19634252`](https://github.com/NixOS/nixpkgs/commit/196342526d5fc7e1bd7b411959dc2ebd1852ef1f) Merge pull request NixOS/nixpkgs#117185 from r-ryantm/auto-update/gleam
* [`4b55c9bb`](https://github.com/NixOS/nixpkgs/commit/4b55c9bbcac1ef6b7d4cc96f4fa1e01235e9c309) Merge pull request NixOS/nixpkgs#117205 from r-ryantm/auto-update/libcint
* [`b9f8d6ec`](https://github.com/NixOS/nixpkgs/commit/b9f8d6ecdffee3321d1966a5f23afe497c45bff5) Merge pull request NixOS/nixpkgs#117182 from r-ryantm/auto-update/getmail6
* [`42de0223`](https://github.com/NixOS/nixpkgs/commit/42de022368b869e2181d7c8a686e2a38ee6e4ce8) Merge pull request NixOS/nixpkgs#115594 from r-ryantm/auto-update/simgear
* [`cee29bf8`](https://github.com/NixOS/nixpkgs/commit/cee29bf85d8cbe8e7753969a61374c1a021ccede) Merge pull request NixOS/nixpkgs#116982 from r-ryantm/auto-update/sonobuoy
* [`d20e0209`](https://github.com/NixOS/nixpkgs/commit/d20e0209610476c0c3f7b485b3b0dc4e73c40ea8) Merge pull request NixOS/nixpkgs#116695 from r-ryantm/auto-update/drm_info
* [`ee7a7ffc`](https://github.com/NixOS/nixpkgs/commit/ee7a7ffc3062e2a758fa95f2608476cb93e9fcb4) microplane: 0.0.26 -> 0.0.28
* [`c04f0f84`](https://github.com/NixOS/nixpkgs/commit/c04f0f8413056d2d735d13f2d1f0afd85764c2eb) cppcheck: 2.3 -> 2.4
* [`4c54b557`](https://github.com/NixOS/nixpkgs/commit/4c54b5575e56ddd89c487ea16ae92da2bd087f76) simplenote: 2.5.0 -> 2.8.0
* [`6f8eb1e6`](https://github.com/NixOS/nixpkgs/commit/6f8eb1e65a091ff48c836e81e4c43f6217bad71f) coq: enable coqide on darwin
* [`be4a9f22`](https://github.com/NixOS/nixpkgs/commit/be4a9f2247e033dc43ea709af0968afa1fc43d9b) python3Packages.openwrt-luci-rpc: 1.1.8 -> 1.1.11
* [`70c22f69`](https://github.com/NixOS/nixpkgs/commit/70c22f694b78925facd5874153f9db50df171e08) ocamlPackages.ocaml_extlib: 1.7.7 -> 1.7.8
* [`347976d9`](https://github.com/NixOS/nixpkgs/commit/347976d980bfc21be444d46ca3c18fa4214d373a) Merge pull request NixOS/nixpkgs#116410 from dotlambda/acpi-call-1.2.1
* [`3ae466ad`](https://github.com/NixOS/nixpkgs/commit/3ae466ad564b536eb87103171c393d61720e7eff) radare2: 5.0.0 -> 5.1.1
* [`b96a0d04`](https://github.com/NixOS/nixpkgs/commit/b96a0d045a97e1ab533014415db5cc7a33548341) pythonPackages.dwdwfsapi: init at 1.0.3
* [`62e8769a`](https://github.com/NixOS/nixpkgs/commit/62e8769a3a5e6ec849995448a49907cb1bf75339) home-assistant: update component-packages.nix
* [`ceed556f`](https://github.com/NixOS/nixpkgs/commit/ceed556f0b9f5bec1751e4b2505f88e7b10e3841) Merge pull request NixOS/nixpkgs#117150 from aanderse/gitea
* [`90a99066`](https://github.com/NixOS/nixpkgs/commit/90a9906637c834ef5d8ed31889b03c94e5653a54) libcpuid: 0.5.0 -> 0.5.1
* [`ee807071`](https://github.com/NixOS/nixpkgs/commit/ee8070715992073a81a2d6fdf9e0c2c3f88488f6) Trim ehmry from some package maintainers
* [`d280e1f7`](https://github.com/NixOS/nixpkgs/commit/d280e1f78c244f71ee32c864ca24a85015f4ef74) Merge pull request NixOS/nixpkgs#116788 from veprbl/pr/texlive_find_tarballs_fix
* [`012b3a65`](https://github.com/NixOS/nixpkgs/commit/012b3a659eaec450b5372a09aea6d32e1805c1a9) terraform-providers.kubernetes-alpha: nightly20200608 -> 0.3.2
* [`47466468`](https://github.com/NixOS/nixpkgs/commit/474664683c8a6f9e896b182d432d1f748866b9a2) Merge pull request NixOS/nixpkgs#117332 from zimbatm/terraform-providers-kubernetes-alpha-0.3.2
* [`09d50b21`](https://github.com/NixOS/nixpkgs/commit/09d50b21f2f970d0dad83521181a59a6c1785e65) Merge pull request NixOS/nixpkgs#117327 from Mic92/radare2
* [`7ecdc01b`](https://github.com/NixOS/nixpkgs/commit/7ecdc01b39bb151e73dbeb734c52f2503ea7fdd7) Merge pull request NixOS/nixpkgs#117233 from mweinelt/firefox
* [`e94cf01b`](https://github.com/NixOS/nixpkgs/commit/e94cf01b2dbcbff61b3d1d73a05d35e995d32f47) Merge pull request NixOS/nixpkgs#117246 from robintown/matrix-synapse
* [`003af12c`](https://github.com/NixOS/nixpkgs/commit/003af12c96f3b8bb943bc8e257c419833f408912) perlPackages.LaTeXML: enable ImageMagick
* [`eb225f5d`](https://github.com/NixOS/nixpkgs/commit/eb225f5d9d278da9c8223e5930e215a38137bbe3) eiskaltdcpp: remove build dependency from boost (NixOS/nixpkgs#116998)
* [`c25ffa8b`](https://github.com/NixOS/nixpkgs/commit/c25ffa8b76a471cf823786b27f13ee01d4b8803f) Merge pull request NixOS/nixpkgs#117073 from sternenseemann/inspircd-3.9.0
* [`a9ec3f7b`](https://github.com/NixOS/nixpkgs/commit/a9ec3f7b66862a84e17b637f047c56d0b10dcb99) digitemp: init at 3.7.2
* [`5ec1f89c`](https://github.com/NixOS/nixpkgs/commit/5ec1f89c2316ea9a3840691a555ed8b7faef788f) metasploit: 6.0.34 -> 6.0.36
* [`79493310`](https://github.com/NixOS/nixpkgs/commit/79493310403d965502b6a65dc9eb421992bd36cc) Merge pull request NixOS/nixpkgs#117161 from xworld21/latexml-perlmagick
* [`cc302fcb`](https://github.com/NixOS/nixpkgs/commit/cc302fcbec392e66b086518a59e4fcaeebd39f6b) nco: 4.9.7 -> 4.9.8 + fix license and deps
* [`d527d1d5`](https://github.com/NixOS/nixpkgs/commit/d527d1d528c8d614368e624eadbc1c379df31cdf) home-manager: 2021-01-16 -> 2021-03-21
* [`09ea1dc7`](https://github.com/NixOS/nixpkgs/commit/09ea1dc766cdcbd5040afa5ff0a354f214d50ce9) elmPackages.elm-format: fix build
* [`eebfc250`](https://github.com/NixOS/nixpkgs/commit/eebfc250dd65b283200a6ab96bd6db9016e4b6b4) Merge pull request NixOS/nixpkgs#117317 from r-ryantm/auto-update/filezilla
* [`8a487eae`](https://github.com/NixOS/nixpkgs/commit/8a487eae769985a0614d82325a9880e665987dc8) jellyfin: 10.7.0 -> 10.7.1
* [`8ab68936`](https://github.com/NixOS/nixpkgs/commit/8ab6893632c280c267ff7f06a4ebd53c2189008d) jmol: 14.31.34 -> 14.31.35
* [`2a2a06cc`](https://github.com/NixOS/nixpkgs/commit/2a2a06cc096f2fb318802badb934ab0587f7a85f) python3Packages.tatsu: 5.6.0 -> 5.6.1
* [`80cef447`](https://github.com/NixOS/nixpkgs/commit/80cef4476a6d3c2a7cb5ad46c4490eed7ac39a28) vscode-extensions.redhat.java: mark as broken, not available
* [`d8aeaadb`](https://github.com/NixOS/nixpkgs/commit/d8aeaadb3b15e5475bb2e85758f200a7b90a17c2) poke: 1.0 -> 1.1
* [`3d546fab`](https://github.com/NixOS/nixpkgs/commit/3d546fab4ea62f021976ef0a9991bb7ad9f35d33) Merge pull request NixOS/nixpkgs#117342 from turboMaCk/marek/fix-elm-format
* [`583c99ef`](https://github.com/NixOS/nixpkgs/commit/583c99ef137cdd39ce29e1663dd59064b3c59430) linux: 4.19.181 -> 4.19.182
* [`6283fc9d`](https://github.com/NixOS/nixpkgs/commit/6283fc9d51777377003085916a1bdee9417c5dc5) linux: 5.10.24 -> 5.10.25
* [`3a1c01b3`](https://github.com/NixOS/nixpkgs/commit/3a1c01b3fedd3181d1b651acfe77df3acea5334b) linux: 5.11.7 -> 5.11.8
* [`1e72305d`](https://github.com/NixOS/nixpkgs/commit/1e72305d0f8702db79705574a000f76f692f6f22) linux: 5.4.106 -> 5.4.107
* [`6b71132f`](https://github.com/NixOS/nixpkgs/commit/6b71132fcf8191c3b847c790a23a53d81172bd3d) linux-rt_5_4: 5.4.102-rt53 -> 5.4.106-rt54
* [`c1fb1f8e`](https://github.com/NixOS/nixpkgs/commit/c1fb1f8ef77da233d2897c68ac58dbf8296ac643) linux/hardened/patches/4.19: 4.19.181-hardened1 -> 4.19.182-hardened1
* [`c57b8eb8`](https://github.com/NixOS/nixpkgs/commit/c57b8eb8fe16934964f301559a6eb4f6bff8693f) linux/hardened/patches/5.10: 5.10.24-hardened1 -> 5.10.25-hardened1
* [`b8ebd38d`](https://github.com/NixOS/nixpkgs/commit/b8ebd38d64f98c791ce25241bb3518af194d1822) linux/hardened/patches/5.11: 5.11.7-hardened1 -> 5.11.8-hardened1
* [`e31c3509`](https://github.com/NixOS/nixpkgs/commit/e31c3509c506dd75149d468e6966810dd9989906) linux/hardened/patches/5.4: 5.4.106-hardened1 -> 5.4.107-hardened1
* [`4787a38c`](https://github.com/NixOS/nixpkgs/commit/4787a38c707c36fd74e92abd6ad8ce0979f4a4f2) Merge pull request NixOS/nixpkgs#117343 from taku0/firefox-bin-87.0
* [`1c9c51f9`](https://github.com/NixOS/nixpkgs/commit/1c9c51f94c4eddbb401b85fcaa2e9d95bc409add) python3Packages.sagemaker: 2.30.0 -> 2.31.0
* [`e2740dbc`](https://github.com/NixOS/nixpkgs/commit/e2740dbc691e0604b450660a2454b5867da23246) Merge pull request NixOS/nixpkgs#117107 from Atemu/update/zen-kernels
* [`d9cecf86`](https://github.com/NixOS/nixpkgs/commit/d9cecf868228da4c8e354aef2f8ac4352d0d4ea5) Merge pull request NixOS/nixpkgs#117341 from bzizou/nco
* [`2525aa43`](https://github.com/NixOS/nixpkgs/commit/2525aa43a0df4d7d2d4175a7d45d3f14bf3306db) Merge pull request NixOS/nixpkgs#116949 from r-ryantm/auto-update/lokalise2-cli
* [`a06c3fa5`](https://github.com/NixOS/nixpkgs/commit/a06c3fa5ca53cbcd1b9d9ca366722014bc236b6c) Merge pull request NixOS/nixpkgs#117344 from r-ryantm/auto-update/jellyfin
* [`daf60d2c`](https://github.com/NixOS/nixpkgs/commit/daf60d2c4deb83da2287dfda5b2788a57ebcc30a) Merge pull request NixOS/nixpkgs#117200 from r-ryantm/auto-update/k9s
* [`53552a03`](https://github.com/NixOS/nixpkgs/commit/53552a03bfbd7b444e9eacf23c84b4b7b33f0c15) Merge pull request NixOS/nixpkgs#116850 from r-ryantm/auto-update/frp
* [`f8d00051`](https://github.com/NixOS/nixpkgs/commit/f8d0005177af4ed6eb543e8da7d45bb905dfcf0c) rust-analyzer: 2021-03-15 -> 2021-03-22
* [`70b387da`](https://github.com/NixOS/nixpkgs/commit/70b387da701255c1f9a166ca7f97231cbcb087e0) Merge pull request NixOS/nixpkgs#117340 from fabaff/bump-metasploit
* [`c43d9010`](https://github.com/NixOS/nixpkgs/commit/c43d90104a030c896e9c4b13bd1eb4328030df94) Merge pull request NixOS/nixpkgs#117325 from fabaff/bump-openwrt-luci-rpc
* [`ded9ada2`](https://github.com/NixOS/nixpkgs/commit/ded9ada2b1b4b716508d28b1ab2529027837f7e6) drone-runner-docker: init at 1.6.3 (NixOS/nixpkgs#117239)
* [`b9d92a13`](https://github.com/NixOS/nixpkgs/commit/b9d92a1329baefe5f6cb2caadf3b8b40a124e7a0) Merge pull request NixOS/nixpkgs#117256 from FliegendeWurst/trilium-update-0.46.5
* [`d8c989a4`](https://github.com/NixOS/nixpkgs/commit/d8c989a482c8f33cfcae1ad7abd978bfa7a62807) Merge pull request NixOS/nixpkgs#117243 from r-ryantm/auto-update/seaweedfs
* [`5409b08d`](https://github.com/NixOS/nixpkgs/commit/5409b08d8a8f7617a7eec5900dbe7c6cf924cdac) Merge pull request NixOS/nixpkgs#117121 from elohmeier/dwdwfsapi
* [`90d161ef`](https://github.com/NixOS/nixpkgs/commit/90d161ef253b3eb9ae37801828f6e3cdff8c03a9) python3Packages.sphinx-navtree: mark as broken
* [`d058bae5`](https://github.com/NixOS/nixpkgs/commit/d058bae56a4e02097b2b88888a36b7df46eeca04) python3Packages.sklearn-deap: mark as broken
* [`d1bd45a9`](https://github.com/NixOS/nixpkgs/commit/d1bd45a9efd822da44131b3bb5c9b7a0f9f307b5) Merge pull request NixOS/nixpkgs#117362 from oxalica/rust-analyzer
* [`c622182b`](https://github.com/NixOS/nixpkgs/commit/c622182b3894e1133c89ba351171611802968944) Merge pull request NixOS/nixpkgs#117353 from NeQuissimus/python3Packages.sagemaker
* [`b38923b7`](https://github.com/NixOS/nixpkgs/commit/b38923b70add6c571942ee37da37ce5f7e1c4f16) perlPackages.LaTeXML: move makeWrapper to nativeBuildInputs
* [`5e2311d2`](https://github.com/NixOS/nixpkgs/commit/5e2311d2fb2e375a304a9d6d38b6fa445f158a75) musl: 1.2.1 -> 1.2.2
* [`6930acfb`](https://github.com/NixOS/nixpkgs/commit/6930acfb147b77b137f4a1bb5344bfb60e67f534) Merge pull request NixOS/nixpkgs#116947 from r-ryantm/auto-update/lightburn
* [`56677a6f`](https://github.com/NixOS/nixpkgs/commit/56677a6fc16a24c0d274f33d36ed97e39b5324a8) Merge pull request NixOS/nixpkgs#117198 from r-ryantm/auto-update/jbang
* [`db21819e`](https://github.com/NixOS/nixpkgs/commit/db21819e91aee7d2bc2edb5845bdad65cddb5cee) Merge pull request NixOS/nixpkgs#117345 from r-ryantm/auto-update/jmol
* [`34ec2253`](https://github.com/NixOS/nixpkgs/commit/34ec2253bbf90d2b8be4e0798ed61de5b1736869) python3Packages.rabbitpy: mark as broken
* [`66a92613`](https://github.com/NixOS/nixpkgs/commit/66a92613002a139d56de2423cc9d509f8496d7de) Merge pull request NixOS/nixpkgs#117378 from rmcgibbo/rabbitpy
* [`5e5ae827`](https://github.com/NixOS/nixpkgs/commit/5e5ae827f586175b2bb5954a531f84dc3e0856c0) Merge pull request NixOS/nixpkgs#117367 from rmcgibbo/sklearn-deap
* [`ee286b26`](https://github.com/NixOS/nixpkgs/commit/ee286b264a7ae9bc559f404066a838bc52564b5d) Merge pull request NixOS/nixpkgs#117365 from rmcgibbo/sphinx-navtree
* [`cfba1c37`](https://github.com/NixOS/nixpkgs/commit/cfba1c37f7963e03bfbfd5b49421d24bf765abbd) Merge pull request NixOS/nixpkgs#117349 from MetaDark/poke
* [`45522833`](https://github.com/NixOS/nixpkgs/commit/4552283352749da8cffa6d8d7f7c3c7de94a0f23) pspg: 4.3.1 -> 4.4.0
* [`7e87c10a`](https://github.com/NixOS/nixpkgs/commit/7e87c10a9891f8454e8b2c5df54b52215e399135) notcurses: 2.2.2 -> 2.2.3
* [`77f30222`](https://github.com/NixOS/nixpkgs/commit/77f3022296b33624fce6856901d83c55538b0e30) Merge pull request NixOS/nixpkgs#117375 from TredwellGit/musl
* [`dfd5d237`](https://github.com/NixOS/nixpkgs/commit/dfd5d237d95782f6dbde223751ccc01439fd68aa) links2: 2.21 -> 2.22
* [`3102a54e`](https://github.com/NixOS/nixpkgs/commit/3102a54e171f88c7dce3aabcfc66dd5e0def4c0c) python38Packages.azure-multiapi-storage: 0.6.0 -> 0.6.2
* [`f7d1fb54`](https://github.com/NixOS/nixpkgs/commit/f7d1fb542fee29f90a85a2683da5835848de67d3) mksh: fix license
* [`4d709f38`](https://github.com/NixOS/nixpkgs/commit/4d709f381abaefa1cc5616164b1b72178c2d1a69) Merge pull request NixOS/nixpkgs#117048 from AndersonTorres/new-mksh
* [`d3f7e969`](https://github.com/NixOS/nixpkgs/commit/d3f7e969b9860fb80750147aeb56dab1c730e756) Merge pull request NixOS/nixpkgs#117218 from r-ryantm/auto-update/minizinc

nixpkgs: 4e0d3868c679da20108db402785f924daa1a7fb5 to c0e881852006b132236cbf0301bd1939bb50867e
* [`56677a6f`](https://github.com/NixOS/nixpkgs/commit/56677a6fc16a24c0d274f33d36ed97e39b5324a8) Merge pull request NixOS/nixpkgs#117198 from r-ryantm/auto-update/jbang
* [`db21819e`](https://github.com/NixOS/nixpkgs/commit/db21819e91aee7d2bc2edb5845bdad65cddb5cee) Merge pull request NixOS/nixpkgs#117345 from r-ryantm/auto-update/jmol
* [`d0163f2a`](https://github.com/NixOS/nixpkgs/commit/d0163f2af09b008bc583bc1688c09e560ee745c3) multimc: unstable -> 0.6.12
* [`34ec2253`](https://github.com/NixOS/nixpkgs/commit/34ec2253bbf90d2b8be4e0798ed61de5b1736869) python3Packages.rabbitpy: mark as broken
* [`66a92613`](https://github.com/NixOS/nixpkgs/commit/66a92613002a139d56de2423cc9d509f8496d7de) Merge pull request NixOS/nixpkgs#117378 from rmcgibbo/rabbitpy
* [`5e5ae827`](https://github.com/NixOS/nixpkgs/commit/5e5ae827f586175b2bb5954a531f84dc3e0856c0) Merge pull request NixOS/nixpkgs#117367 from rmcgibbo/sklearn-deap
* [`ee286b26`](https://github.com/NixOS/nixpkgs/commit/ee286b264a7ae9bc559f404066a838bc52564b5d) Merge pull request NixOS/nixpkgs#117365 from rmcgibbo/sphinx-navtree
* [`cfba1c37`](https://github.com/NixOS/nixpkgs/commit/cfba1c37f7963e03bfbfd5b49421d24bf765abbd) Merge pull request NixOS/nixpkgs#117349 from MetaDark/poke
* [`f0d4a1ce`](https://github.com/NixOS/nixpkgs/commit/f0d4a1ce7d4aa3980b15bbf203113b82456f2098) tz: init at 0.4
* [`b67362d7`](https://github.com/NixOS/nixpkgs/commit/b67362d7f70a989a6f4bf6bb106207f53f0c6fe4) doc: add section for FUSE
* [`45522833`](https://github.com/NixOS/nixpkgs/commit/4552283352749da8cffa6d8d7f7c3c7de94a0f23) pspg: 4.3.1 -> 4.4.0
* [`7e87c10a`](https://github.com/NixOS/nixpkgs/commit/7e87c10a9891f8454e8b2c5df54b52215e399135) notcurses: 2.2.2 -> 2.2.3
* [`77f30222`](https://github.com/NixOS/nixpkgs/commit/77f3022296b33624fce6856901d83c55538b0e30) Merge pull request NixOS/nixpkgs#117375 from TredwellGit/musl
* [`dfd5d237`](https://github.com/NixOS/nixpkgs/commit/dfd5d237d95782f6dbde223751ccc01439fd68aa) links2: 2.21 -> 2.22
* [`3102a54e`](https://github.com/NixOS/nixpkgs/commit/3102a54e171f88c7dce3aabcfc66dd5e0def4c0c) python38Packages.azure-multiapi-storage: 0.6.0 -> 0.6.2
* [`f7d1fb54`](https://github.com/NixOS/nixpkgs/commit/f7d1fb542fee29f90a85a2683da5835848de67d3) mksh: fix license
* [`1176f706`](https://github.com/NixOS/nixpkgs/commit/1176f7068f29509b7f6d095c822174790f7f6065) python38Packages.bitarray: 1.7.1 -> 1.8.0
* [`2ce3eff4`](https://github.com/NixOS/nixpkgs/commit/2ce3eff490737e1fe24a30f26464875267140098) salt: 3002.5 -> 3002.6
* [`4d709f38`](https://github.com/NixOS/nixpkgs/commit/4d709f381abaefa1cc5616164b1b72178c2d1a69) Merge pull request NixOS/nixpkgs#117048 from AndersonTorres/new-mksh
* [`d3f7e969`](https://github.com/NixOS/nixpkgs/commit/d3f7e969b9860fb80750147aeb56dab1c730e756) Merge pull request NixOS/nixpkgs#117218 from r-ryantm/auto-update/minizinc
* [`ad8aaa1e`](https://github.com/NixOS/nixpkgs/commit/ad8aaa1eb1e32674386171bcd2e71c5edb5f0aa9) zchunk: 1.1.8 -> 1.1.9
* [`316146ae`](https://github.com/NixOS/nixpkgs/commit/316146ae563c2940940d6c12e2acce98f1f7a4b9) ldeep: 1.0.9 -> 1.0.10
* [`e0e241c2`](https://github.com/NixOS/nixpkgs/commit/e0e241c2199b4e536ea5450f3b0bf9285cc087a2) Merge pull request NixOS/nixpkgs#116369 from m1cr0man/master
* [`5cd983f6`](https://github.com/NixOS/nixpkgs/commit/5cd983f6d31643d5494aec9be04d352e056c50c3) qt5: Include the "out" derivation as well as the "dev" in qt5.full
* [`f1ad232f`](https://github.com/NixOS/nixpkgs/commit/f1ad232f808aeae582312d6236448778de23dae9) Merge pull request NixOS/nixpkgs#117396 from AndersonTorres/new-zchunk
* [`e7c159f2`](https://github.com/NixOS/nixpkgs/commit/e7c159f21b2e2c6bfb370ec87eeb5ec1b6e0d3d0) josm: 17560 -> 17580
* [`2a212938`](https://github.com/NixOS/nixpkgs/commit/2a212938fa0760868c371d871410efb65491582c) python3Packages.restview: 2.9.1 -> 2.9.2 (NixOS/nixpkgs#117374)
* [`dcba35f2`](https://github.com/NixOS/nixpkgs/commit/dcba35f22ba3eb57d24bef8310b4d1f65b9427cd) zs-apc-spdu-ctl: don't put runtime deps into buildInputs
* [`a988e180`](https://github.com/NixOS/nixpkgs/commit/a988e180273ec9302de7cd1e6d0742366f566d7f) Merge pull request NixOS/nixpkgs#117194 from r-ryantm/auto-update/hugo
* [`dfff61f8`](https://github.com/NixOS/nixpkgs/commit/dfff61f8500bd74872ada89c5f8a674f13605508) zziplib: 0.13.71 -> 0.13.72
* [`d969cf2f`](https://github.com/NixOS/nixpkgs/commit/d969cf2f42e3eb300a26d2bfe6bf4fb908230fd2) Merge pull request NixOS/nixpkgs#117387 from AndersonTorres/new-zziplib
* [`6459ab51`](https://github.com/NixOS/nixpkgs/commit/6459ab51c8b9d0a23d72ccbe18c3874cf9eb6d6f) gitea: 1.13.5 -> 1.13.6
* [`b4393366`](https://github.com/NixOS/nixpkgs/commit/b43933666f449038ba05d3582fc54644d62050fc) gitea: normalise derivation format using `nixpkgs-fmt`
* [`5361b4b7`](https://github.com/NixOS/nixpkgs/commit/5361b4b7cce7cfc17439657d6446029ec82a4d6a) Merge pull request NixOS/nixpkgs#117391 from r-ryantm/auto-update/python3.8-bitarray
* [`561cc81e`](https://github.com/NixOS/nixpkgs/commit/561cc81ee6b2ae2c17bc88b45a4e6be9ec388d0b) Merge pull request NixOS/nixpkgs#115857 from lbpdt/feature/docker-tools-layered-base-image
* [`6214cfb3`](https://github.com/NixOS/nixpkgs/commit/6214cfb3ec26fb7f51fcdf05b42243355f9a1af5) sipvicious: init at 0.3.2
* [`5e650a66`](https://github.com/NixOS/nixpkgs/commit/5e650a663f4df301856645ed7863101926193b81) Merge pull request NixOS/nixpkgs#117171 from r-ryantm/auto-update/codeql
* [`c2ecf50d`](https://github.com/NixOS/nixpkgs/commit/c2ecf50dc2dfd3fc2242d81eca4b153aa17f8869) Merge pull request NixOS/nixpkgs#117154 from r-ryantm/auto-update/catt
* [`924b214e`](https://github.com/NixOS/nixpkgs/commit/924b214e05cb466f26c51f1cfaaa135e881664c5) Merge pull request NixOS/nixpkgs#117204 from r-ryantm/auto-update/kubie
* [`76552e95`](https://github.com/NixOS/nixpkgs/commit/76552e95cc6679de7b690ef624135b71b3b326d7) stdenv: Fix regression on ARM+static when enabling hardening (NixOS/nixpkgs#115363)
* [`0df63c95`](https://github.com/NixOS/nixpkgs/commit/0df63c954347ba5f85be869b5957587cccc2b4e7) python3Packages.loguru: unbreak (NixOS/nixpkgs#117381)
* [`c33a8a2c`](https://github.com/NixOS/nixpkgs/commit/c33a8a2c2d4078224ccd2d7dd239625a8fda8924) vimPlugins: update
* [`1e2bd7cd`](https://github.com/NixOS/nixpkgs/commit/1e2bd7cd6f8b4add0c8f5f1f557ae377ce2cb6e0) vimPlugins.nvim-bufferline-lua: init at 2021-03-22
* [`af52343a`](https://github.com/NixOS/nixpkgs/commit/af52343ae931b7392a317f9cfad7d56b201c9546) python3Packages.forbiddenfruit: unbreak
* [`ee07bee0`](https://github.com/NixOS/nixpkgs/commit/ee07bee080fdf326997bb1b060a716c57d333733) udunits: 2.2.27.6 -> unstable-2021-03-17
* [`cce199a3`](https://github.com/NixOS/nixpkgs/commit/cce199a3e09b75256eca999e0371c4e4811dab49) plasma-workspace: fix path to qdbus
* [`73bb976b`](https://github.com/NixOS/nixpkgs/commit/73bb976ba5c474c70f0c73e2f3a26f973bf11a9a) Merge pull request NixOS/nixpkgs#117392 from Flakebi/salt
* [`39cd45c6`](https://github.com/NixOS/nixpkgs/commit/39cd45c6086007b9a733819d719ccb85fda80afb) Merge pull request NixOS/nixpkgs#117414 from figsoda/nvim-bufferline-lua
* [`52433003`](https://github.com/NixOS/nixpkgs/commit/524330039c3319d7dacfff5e1d910174accc1774) apacheHttpdPackages.mod_evasive: drop package
* [`6178d378`](https://github.com/NixOS/nixpkgs/commit/6178d37883c267aafd0afe2da221a38e22957b4c) apacheHttpdPackages: compile packages
* [`9677d30d`](https://github.com/NixOS/nixpkgs/commit/9677d30d773021b9237e8130f5ba2879bf954354) Merge pull request NixOS/nixpkgs#117163 from aanderse/kodi-a4ksubtitles
* [`f702e566`](https://github.com/NixOS/nixpkgs/commit/f702e566c05d9c377476e62661f7c8b561933a70) pythonPackages.pyradios: init at 0.0.22
* [`8c77085b`](https://github.com/NixOS/nixpkgs/commit/8c77085b183bb9e95b960d05b311ef11aace3a87) python3Packages.pymumble: 0.3.1 -> 1.6
* [`1638776b`](https://github.com/NixOS/nixpkgs/commit/1638776b7b6a0093b041116ce4d6e310b1e75dfe) botamusique: init at unstable-2021-03-13
* [`0432ecca`](https://github.com/NixOS/nixpkgs/commit/0432eccae8794f654ba843e408d19f1fb04313b0) bit: init at 1.05
* [`564f4287`](https://github.com/NixOS/nixpkgs/commit/564f4287470c3d75bffab1e058f165045575027c) weechat-notify-send: fixed meta.homepage mispelling
* [`d2fbcbdc`](https://github.com/NixOS/nixpkgs/commit/d2fbcbdcd64bf3b6fd1e2e9f9ccd3c8a685d4e60) Merge pull request NixOS/nixpkgs#117155 from marsam/update-grpc
* [`15fd117e`](https://github.com/NixOS/nixpkgs/commit/15fd117e71bfd809e3cd413abd4198874460d4b2) cypari2: 2.1.1 -> 2.1.2
* [`594eda3b`](https://github.com/NixOS/nixpkgs/commit/594eda3b7d406b1d01bdd4d2d31bd8ec26240bda) sage: patch intermittently failing test
* [`90772d66`](https://github.com/NixOS/nixpkgs/commit/90772d66667e00d5c0b259be4d2830d594679fff) cysignals: 1.10.2 -> 1.10.3
* [`812ffed9`](https://github.com/NixOS/nixpkgs/commit/812ffed96b4b69a1443e89b39cf3907a1ec1b5b5) gap: backport aarch64 patch
* [`0864004f`](https://github.com/NixOS/nixpkgs/commit/0864004f247d6b25643639b303059722dfed6999) Merge pull request NixOS/nixpkgs#112972 from Infinisil/botamusique
* [`fd8f8f55`](https://github.com/NixOS/nixpkgs/commit/fd8f8f5586de0a7fa8288bdab7a715c75a1e1915) Merge pull request NixOS/nixpkgs#115660 from r-ryantm/auto-update/talloc
* [`aeba3b9e`](https://github.com/NixOS/nixpkgs/commit/aeba3b9e54d278586b9f6f8432321434d93bd7c2) Merge pull request NixOS/nixpkgs#115697 from r-ryantm/auto-update/vultr
* [`2db8c55d`](https://github.com/NixOS/nixpkgs/commit/2db8c55de05dbd8b307ec4a914d3ef058841f43e) discord: 0.0.13 -> 0.0.14
* [`4d260497`](https://github.com/NixOS/nixpkgs/commit/4d260497c64cfa8463fb21ffaec46b89f114e89c) Merge pull request NixOS/nixpkgs#117359 from r-ryantm/auto-update/kodi-pvr-hts
* [`9db47b0a`](https://github.com/NixOS/nixpkgs/commit/9db47b0a3a7e4d3d19add50719705a30b0de5be8) cargo-audit: add cargo audit fix by default
* [`59540af4`](https://github.com/NixOS/nixpkgs/commit/59540af4ba264a2cf45b67b85fb2bb81b75c6ebf) libpst: build as shared library
* [`bb60fd85`](https://github.com/NixOS/nixpkgs/commit/bb60fd8592c954ae0cbb114d62f6049c6b0b5f31) evolution: enable importing Outlook .pst data files
* [`b59d0646`](https://github.com/NixOS/nixpkgs/commit/b59d0646b24cc42c227c64e89a751a1fb3cab3fa) Merge pull request NixOS/nixpkgs#117315 from r-ryantm/auto-update/recursive
* [`9920c232`](https://github.com/NixOS/nixpkgs/commit/9920c23215432d5f4365823737dc6baebc26fbb2) Merge pull request NixOS/nixpkgs#117337 from r-ryantm/auto-update/jamulus
* [`d45bf41d`](https://github.com/NixOS/nixpkgs/commit/d45bf41d7ae20f4007b8a878bfa86fa221f97d81) rubocop: 1.11.0 -> 1.12.0
* [`a57a59fe`](https://github.com/NixOS/nixpkgs/commit/a57a59febea4287e122001d22be9bbca7932b6ba) Merge pull request NixOS/nixpkgs#117424 from mvnetbiz/evolution-pst-import
* [`3942baa2`](https://github.com/NixOS/nixpkgs/commit/3942baa2db14c637c8dae85b77b2e5eeddc3e193) python3Packages.plexapi: 4.4.1 -> 4.5.0
* [`48f244a5`](https://github.com/NixOS/nixpkgs/commit/48f244a518ddc0d7f7e297d9361f7e9599164415) vimPlugins.nvim-colorizer-lua: init at 2020-06-11
* [`7352df86`](https://github.com/NixOS/nixpkgs/commit/7352df865af042cf43a56dd9ea29e04ec44500b2) python38Packages.croniter: 0.3.37 -> 1.0.9
* [`ff9869d3`](https://github.com/NixOS/nixpkgs/commit/ff9869d3d635fe3477b98ad6ffbfb7f8b7f2709e) python38Packages.azure-eventgrid: 4.0.0 -> 4.1.0
* [`99111070`](https://github.com/NixOS/nixpkgs/commit/9911107004d9b76b43e6e1d5f97514b0b0eb92ae) python38Packages.mautrix: 0.8.16 -> 0.8.17
* [`0d5c0c46`](https://github.com/NixOS/nixpkgs/commit/0d5c0c46080cbf95998e9326ae0d273a251bdee0) joker: 0.15.7 -> 0.16.0
* [`6ccd2c70`](https://github.com/NixOS/nixpkgs/commit/6ccd2c708041e1483af461d127b880ed9ad21f68) python38Packages.databricks-connect: 7.3.10 -> 8.1.0
* [`5498ac7c`](https://github.com/NixOS/nixpkgs/commit/5498ac7c500e82b629958854f8dd3bd2f3e046e7) buildkite-agent: 3.27.0 -> 3.28.1
* [`1af4354d`](https://github.com/NixOS/nixpkgs/commit/1af4354d8149c48229b4a5621b4067688135ea3a) openmpt123: 0.5.5 -> 0.5.6
* [`ac591f31`](https://github.com/NixOS/nixpkgs/commit/ac591f31c2c990f8d35a8f23b5f6c14f4686bb55) pythonPackages.jellyfin-apiclient-python: 1.7.0 -> 1.7.2
* [`f353d0eb`](https://github.com/NixOS/nixpkgs/commit/f353d0eb014ddb99d2b00640020d013fd0e638db) jellyfin-mpv-shim: 1.9.0 -> 1.10.0
* [`84023d85`](https://github.com/NixOS/nixpkgs/commit/84023d85cb12c214d309bc939cde206b2ffabcb0) llvmPackages_rocm: 4.0.1 -> 4.1.0
* [`66a017cc`](https://github.com/NixOS/nixpkgs/commit/66a017cc5642e3c0ea85f318fa28b2e20d7fc7af) rocm-device-libs: 4.0.0 -> 4.1.0
* [`b28f05f1`](https://github.com/NixOS/nixpkgs/commit/b28f05f1ef2f06ffdcef310687ee54b74aaf0037) rocm-thunk: 4.0.0 -> 4.1.0
* [`ecaced15`](https://github.com/NixOS/nixpkgs/commit/ecaced15e4e169e689698d33dde4a701bce4ddc8) rocm-runtime: 4.0.0 -> 4.1.0
* [`74ce68be`](https://github.com/NixOS/nixpkgs/commit/74ce68be64eea9bde1bda72b164d7e79085e29c6) rocm-comgr: 4.0.0 -> 4.1.0
* [`ec21ab9e`](https://github.com/NixOS/nixpkgs/commit/ec21ab9e0c4baa88c6d427fd746ef3399b7dba8f) rocm-cmake: 4.0.0 -> 4.1.0
* [`a517ae90`](https://github.com/NixOS/nixpkgs/commit/a517ae90cf680bd2bf15d4f4b53aa9580cc8078f) rocclr: 4.0.0 -> 4.1.0
* [`ed7d75b3`](https://github.com/NixOS/nixpkgs/commit/ed7d75b3a4a1b72e971859ab2598e1ac6d6d1ac5) rocm-opencl-runtime: 4.0.0 -> 4.1.0
* [`070bfc96`](https://github.com/NixOS/nixpkgs/commit/070bfc96b7446e7d2653a1913b9bc4082d529638) python38Packages.xdis: 5.0.5 -> 5.0.8 (NixOS/nixpkgs#117364)
* [`ec7ff8b0`](https://github.com/NixOS/nixpkgs/commit/ec7ff8b0dc86f7c722f59ee790ab4e20971179dd) python3Packages.croniter: use pytestCheckHook
* [`50a392a4`](https://github.com/NixOS/nixpkgs/commit/50a392a4fedf398d2c43a0ab9f4144f1bd39c953) pythonPackages.android-backup: init at 0.2.0
* [`0285851c`](https://github.com/NixOS/nixpkgs/commit/0285851c4e7fe57ebe71181d93afee6c44fcd47c) python3Packages.python-miio: 0.5.4 -> 0.5.5.1
* [`9eac30fc`](https://github.com/NixOS/nixpkgs/commit/9eac30fc476b4e05559e52dea8c5694d07057813) Merge NixOS/nixpkgs#117329: gnumeric: 1.12.48 -> 1.12.49
* [`e13c5e71`](https://github.com/NixOS/nixpkgs/commit/e13c5e711a7c069ef10c914858f6d0ad6fc6822b) python38Packages.sasmodels: 1.0.2 -> 1.0.4
* [`84fcca07`](https://github.com/NixOS/nixpkgs/commit/84fcca07aa4f8a9072b717cbacde3dc02dfd7a02) rocm-smi: 4.0.0 -> 4.1.0
* [`c0914a76`](https://github.com/NixOS/nixpkgs/commit/c0914a76c40230fb06eb6df8f54995796edef3ef) pyload: drop
* [`5886dda3`](https://github.com/NixOS/nixpkgs/commit/5886dda3068d6555c4cf131579ff87fe749ad5c2) plowshare: spidermonkey_38 -> spidermonkey_78
* [`788575a4`](https://github.com/NixOS/nixpkgs/commit/788575a4de649c32893c816e8d21b4361641d12d) jsawk: spidermonkey_38 -> spidermonkey_78
* [`c49825c5`](https://github.com/NixOS/nixpkgs/commit/c49825c5eebf01f7cd6e7050678aee37259aebef) spidermonkey_38: drop
* [`c28c61b7`](https://github.com/NixOS/nixpkgs/commit/c28c61b7a5b455f8d2e956a36b18c0b8712fdaca) helio-workstation: 3.3 -> 3.4
* [`968b3384`](https://github.com/NixOS/nixpkgs/commit/968b3384be5a8618da6352e1dbf7df19e751b924) Merge pull request NixOS/nixpkgs#117448 from r-ryantm/auto-update/python3.8-croniter
* [`43b02818`](https://github.com/NixOS/nixpkgs/commit/43b02818f6291776749e1cc7750fa69a72c3af4d) Merge pull request NixOS/nixpkgs#117273 from hercules-ci/nixos-dont-format
* [`683f3745`](https://github.com/NixOS/nixpkgs/commit/683f374529e48b0a271c27813720ed208c55d0ee) nixos/wireguard: don't use alias
* [`2b2f6cf3`](https://github.com/NixOS/nixpkgs/commit/2b2f6cf361fb05c0a1a7f151f8b0925729e4658d) mill: 0.9.3 -> 0.9.5
* [`0ad1d526`](https://github.com/NixOS/nixpkgs/commit/0ad1d526dc302d010dea89e085c9e407f6535b3d) Merge pull request NixOS/nixpkgs#117454 from dotlambda/wireguard-noalias
* [`dd14ecf9`](https://github.com/NixOS/nixpkgs/commit/dd14ecf90e80d2f2e84cb58dbec4c63cdb54bc21) Merge pull request NixOS/nixpkgs#117429 from marsam/update-starship
* [`877dc284`](https://github.com/NixOS/nixpkgs/commit/877dc28455ba410aafbbf85c3280b21fc5ecb409) pika-backup: 0.2.1 -> 0.2.2
* [`92849db2`](https://github.com/NixOS/nixpkgs/commit/92849db231a5c0b8abfdbf44acf249251719aaa0) Merge pull request NixOS/nixpkgs#117405 from schmittlauch/gitea1136
* [`4e37cc1f`](https://github.com/NixOS/nixpkgs/commit/4e37cc1f4753ce8cb1d73f3dc348050e2fc4394c) Merge pull request NixOS/nixpkgs#117428 from kittywitch/master
* [`a710de55`](https://github.com/NixOS/nixpkgs/commit/a710de5592ebfa0b0b1bef0b0b3feb9174303ac7) github-backup: init at 0.39.0 (NixOS/nixpkgs#116976)
* [`7dfc2d26`](https://github.com/NixOS/nixpkgs/commit/7dfc2d269bb21d4ea7fe33d4a51f77215564562c) doc: improve Python section (NixOS/nixpkgs#116344)
* [`16fe5273`](https://github.com/NixOS/nixpkgs/commit/16fe527311ccafd774e949797a3ffd4502e1ead5) Merge pull request NixOS/nixpkgs#117411 from AndersonTorres/new-udunits
* [`6b74bbfb`](https://github.com/NixOS/nixpkgs/commit/6b74bbfb9603418fac02cda0352b70661eab2aa6) Merge pull request NixOS/nixpkgs#117409 from fabaff/sipvicious
* [`e264b3cb`](https://github.com/NixOS/nixpkgs/commit/e264b3cb14b08d05daac145eceb23f6dda1bb9b1) cen64: unstable-2020-02-20 -> unstable-2021-03-12
* [`06ee8e75`](https://github.com/NixOS/nixpkgs/commit/06ee8e7580b23e268ad1d3cc89954279fc9afb1d) Merge pull request NixOS/nixpkgs#117402 from fabaff/bump-ldeep
* [`31439b83`](https://github.com/NixOS/nixpkgs/commit/31439b83161bae0c8aa2ba6a908eb021c5c9c810) slowhttptest: init at 1.8.2
* [`14efa32f`](https://github.com/NixOS/nixpkgs/commit/14efa32fa5147ed9cbe060558739d1362b217fa3) chromiumDev: 91.0.4449.6 -> 91.0.4455.2
* [`c4582a83`](https://github.com/NixOS/nixpkgs/commit/c4582a8388077250d85e5e0f0e03633450416846) Merge pull request NixOS/nixpkgs#117386 from phfroidmont/master
* [`92972e99`](https://github.com/NixOS/nixpkgs/commit/92972e99fea5e24d347fa60efeecc6626e5b53ec) Merge pull request NixOS/nixpkgs#117398 from FliegendeWurst/josm-17580
* [`0c51d091`](https://github.com/NixOS/nixpkgs/commit/0c51d091cb187512f2408ae9c41afb496e1c9404) Merge pull request NixOS/nixpkgs#117441 from happysalada/cargo_audit_add_fix
* [`d87bbeb7`](https://github.com/NixOS/nixpkgs/commit/d87bbeb7242a53817c6d6e9e0b8f86263fc2c8da) coursier: 2.0.15 -> 2.0.16
* [`bac80b5a`](https://github.com/NixOS/nixpkgs/commit/bac80b5af2b10aa37143650322e01dfbd8120542) python3Packages.botocore: 1.20.33 -> 1.20.34
* [`27d4f20c`](https://github.com/NixOS/nixpkgs/commit/27d4f20c9754e504c783070826d9301ecb6d1df8) python3Packages.boto3: 1.17.33 -> 1.17.34
* [`7014daec`](https://github.com/NixOS/nixpkgs/commit/7014daec3dab0d305add20407f3ed9f736de80ff) awscli: 1.19.33 -> 1.19.34
* [`60b490b8`](https://github.com/NixOS/nixpkgs/commit/60b490b83f6e5c6256f8f2f2c0689fad4890e78c) linux-hardened: Switch to 5.11
* [`09406084`](https://github.com/NixOS/nixpkgs/commit/09406084bdd328cabf2c4440a908930bc4e7eeab) linux-hardened: Fix page poisoning for 5.11
* [`5500cb51`](https://github.com/NixOS/nixpkgs/commit/5500cb5145ea987d8e24ca18ecaa0e5d711c999d) python3Packages.aiosmb: init at 0.2.37
* [`daa21e09`](https://github.com/NixOS/nixpkgs/commit/daa21e098f482bf795ea4c74107eb2c03eff750b) python3Packages.pypykatz: 0.4.3 -> 0.4.7
* [`7865db27`](https://github.com/NixOS/nixpkgs/commit/7865db274bffa497feef0c07aa7d7ace86734561) ghostwriter: 2.0.0-rc4 -> 2.0.0-rc5
* [`873c008c`](https://github.com/NixOS/nixpkgs/commit/873c008c3342b9d70d5c902f632284db8218e0e0) vscode: fix download link
* [`5efaab8a`](https://github.com/NixOS/nixpkgs/commit/5efaab8ad67e9c111a54df48009b50…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
6.topic: cross-compilation Building packages on a different sort platform than than they will be run on 6.topic: stdenv Standard environment 10.rebuild-darwin: 0 10.rebuild-linux: 0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

cross: regression with armv7 pkgsStatic (error: C compiler cannot create executables)
3 participants