Commit graph

308213 commits

Author SHA1 Message Date
Fabian Affolter
1eb62cee70 python3Packages.yeelight: 0.6.3 -> 0.7.2 2021-08-10 22:40:53 +02:00
Pascal Bach
1c54ce56ab nixos/minio: add release notes 2021-08-10 22:37:30 +02:00
Pascal Bach
3417f18f96 nixos/minio: allow configuring console port 2021-08-10 22:37:30 +02:00
Pascal Bach
345e58292d minio: 2021-05-16T05-32-34Z -> 2021-08-05T22-01-19Z 2021-08-10 22:37:30 +02:00
Fabian Affolter
652340f7dd python3Packages.yfinance: 0.1.61 -> 0.1.63 2021-08-10 22:31:41 +02:00
Josh Holland
0ed4412e40 remind: 03.03.06 -> 03.03.07 2021-08-10 21:30:32 +01:00
Fabian Affolter
36e0fc76ae python3Packages.angrop: 9.0.9355 -> 9.0.9438 2021-08-10 22:26:32 +02:00
Fabian Affolter
3acb8e0b71 python3Packages.angr: 9.0.9355 -> 9.0.9438 2021-08-10 22:26:29 +02:00
Fabian Affolter
e2acd670bf python3Packages.cle: 9.0.9355 -> 9.0.9438 2021-08-10 22:26:25 +02:00
Fabian Affolter
32e6ac273b python3Packages.claripy: 9.0.9355 -> 9.0.9438 2021-08-10 22:26:23 +02:00
Fabian Affolter
c950cc4deb python3Packages.pyvex: 9.0.9355 -> 9.0.9438 2021-08-10 22:26:20 +02:00
Fabian Affolter
ab7ce2befe python3Packages.ailment: 9.0.9355 -> 9.0.9438 2021-08-10 22:26:17 +02:00
Fabian Affolter
8f69556be3 python3Packages.archinfo: 9.0.9355 -> 9.0.9438 2021-08-10 22:26:14 +02:00
Fabian Affolter
99784356ac python3Packages.env-canada: 0.4.1 -> 0.5.0 2021-08-10 22:23:30 +02:00
Johannes Arnold
848798787e bklk: init at unstable-2020-12-29 2021-08-10 22:17:43 +02:00
maralorn
c792caaf60
Merge pull request #133020 from NixOS/haskell-updates
haskellPackages: update hackage and stackage
2021-08-10 22:17:09 +02:00
Malte Brandy
d86710ad1f
Merge branch 'master' into haskell-updates 2021-08-10 22:01:47 +02:00
Fabian Affolter
77d6e9e66c python3Packages.transmission-rpc: 3.2.5 -> 3.2.6 2021-08-10 22:01:28 +02:00
R. RyanTM
41d065ef60 crispyDoom: 5.10.1 -> 5.10.2 2021-08-10 20:01:17 +00:00
Malte Brandy
844bb647fb
haskellPackages.hevm: Fix eval by disabling on aarch64 2021-08-10 21:57:23 +02:00
Artturi
a8ef3da92f
Merge pull request #133417 from SebTM/betterlockscreen_fix_duplicate_hook
betterlockscreen: Fix duplicate preInstall hook introduced in #133306
2021-08-10 22:51:44 +03:00
Fabian Affolter
e5f407ad7a python3Packages.typed-settings: 0.9.2 -> 0.10.0 2021-08-10 21:49:19 +02:00
Fabian Affolter
c591215a4c python3Packages.phonenumbers: 8.12.28 -> 8.12.29 2021-08-10 21:42:14 +02:00
Ahmed El Gabri
e14ecb19ea
vscode-langservers-extracted: init at 2.4.0 2021-08-10 21:38:17 +02:00
Sebastian Sellmeier
dbc59a8c8d
betterlockscreen: Fix duplicate preInstall hook introduced in #133306 2021-08-10 21:36:17 +02:00
Timothy DeHerrera
7a70d3c4d5
Merge pull request #133406 from jonringer/terraform-aliases
terraform.providers: use allowAliases for exposing deprecated providers
2021-08-10 13:19:00 -06:00
Malte Brandy
146007769f
haskellPackages: mark builds failing on hydra as broken
This commit has been generated by maintainers/scripts/haskell/mark-broken.sh
2021-08-10 21:16:37 +02:00
sternenseemann
2582176554 catgirl: 1.8 -> 1.9
https://git.causal.agency/catgirl/tag/?h=1.9
2021-08-10 21:08:50 +02:00
Fabian Affolter
6034866286 python3Packages.fastapi: 0.67.0 -> 0.68.0 2021-08-10 21:01:01 +02:00
Fabian Affolter
6b21060861 python3Packages.eventlet: 0.31.0 -> 0.31.1 2021-08-10 20:53:49 +02:00
Jonathan Ringer
c946a8861a
terraform.providers: use allowAliases for exposing deprecated providers 2021-08-10 11:43:24 -07:00
Atemu
2aaf41173d linux_lqx: 5.12.19 -> 5.13.9 2021-08-10 20:37:56 +02:00
Silvan Mosberger
998a9c1707 lib/options: Better mergeEqualOption error for uncomparable types
For an option definition that uses `lib.options.mergeEqualOption`
underneath, like `types.anything`, an error is thrown when multiple
functions are assigned, indicating that functions can't be compared for
equivalence:

  error: The option `test' has conflicting definition values:
  - In `xxx': <function>
  - In `xxx': <function>
  (use '--show-trace' to show detailed location information)

However, the error message didn't use the correct files. While above
error indicates that both definitions are in the xxx file, that's in
fact not true. Above error was generated with

  options.test = lib.mkOption {
    type = lib.types.anything;
  };

  imports = [
    {
      _file = "yyy";
      test = y: y;
    }
    {
      _file = "xxx";
      test = x: x;
    }
  ];

With this change, the error uses the correct file locations:

  error: The option `test' has conflicting definition values:
  - In `xxx': <function>
  - In `yyy': <function>
  (use '--show-trace' to show detailed location information)
2021-08-10 19:54:32 +02:00
Fabian Affolter
724a0fc846 python3Packages.exchangelib: 4.4.0 -> 4.5.0 2021-08-10 19:51:41 +02:00
Fabian Affolter
ebc72941f0
Merge pull request #133387 from r-ryantm/auto-update/findomain
findomain: 4.3.0 -> 5.0.0
2021-08-10 18:18:10 +02:00
Sandro
6df7b8f398
Merge pull request #133389 from SuperSandro2000/cleanup 2021-08-10 17:16:34 +02:00
R. RyanTM
4f0e6e9879 glab: 1.18.1 -> 1.19.0 2021-08-10 15:14:36 +00:00
Sandro
fe6eb6881c
Merge pull request #133384 from fabaff/bump-dbutils
python3Packages.dbutils: 2.0.1 -> 2.0.2
2021-08-10 17:11:29 +02:00
Martin Weinelt
c475d136df
Merge pull request #133364 from NixOS/home-assistant 2021-08-10 17:00:37 +02:00
VergeDX
04f5726f48 nodePackages.clipboard-cli: init at 2.0.1 2021-08-10 14:52:17 +00:00
David Yamnitsky
bb0867389f wasm-bindgen-cli: 0.2.74 -> 0.2.75 2021-08-10 10:51:16 -04:00
Fabian Affolter
069a145ae0 python3Packages.eth-typing: 2.2.1 -> 2.2.2 2021-08-10 16:32:50 +02:00
Kid
fe01052444
fnm: init at 1.26.0 (#130788)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-08-10 16:31:46 +02:00
Martin Weinelt
e4aad33de1
Merge pull request #133388 from vcunat/p/tested-firefox-esr
nixos/tests: unbreak the tested job
2021-08-10 16:30:35 +02:00
Sandro Jäckel
7b6af9e542
betterlockscreen: format 2021-08-10 16:26:34 +02:00
Sandro Jäckel
4477421b05
changelog: re-add by accident deleted sections 2021-08-10 16:26:18 +02:00
Sandro
d262033730
Merge pull request #133312 from Artturin/atomicparsleyupdate
atomicparsley: 20210617.200601.1ac7c08 -> 20210715.151551.e7ad03a
2021-08-10 16:25:13 +02:00
Sandro
dc000ffa21
Merge pull request #129318 from fabaff/bump-usbredir 2021-08-10 16:18:08 +02:00
Vladimír Čunát
c0097aa84a
nixos/tests: unbreak the tested job
I expect it suffices that the channel only blocks on one firefox ESR
test - the one for the default ESR.  I didn't want to have the
information about the default in two places, so either of the tests will
be evaluated twice (but to the same *.drv I hope).
2021-08-10 16:15:57 +02:00
R. RyanTM
4abb57f19b findomain: 4.3.0 -> 5.0.0 2021-08-10 14:14:37 +00:00