Luke Granger-Brown
93de027ee0
Merge pull request #120487 from lukegb/temp-ec2-fixed-disk
...
treewide: revert auto disk sizing for images
2021-04-24 03:54:42 +01:00
Jan Tojnar
3771de8ae0
common-updater-scripts: Support attribute lookup in flake
...
In flakes, packages are not exposed directly but instead they are declared
inside “packages” or “legacyPackages” output under their host platform.
flake-compat reflects this.
Let’s look for an attribute also in these outputs if the direct lookup fails.
2021-04-24 04:52:48 +02:00
Luke Granger-Brown
4fb91cbafe
Revert "treewide: use auto diskSize for make-disk-image"
...
This reverts commit f3aa040bcbf39935e7e9ac7a7296eac9da7623ec.
2021-04-24 02:38:36 +00:00
Luke Granger-Brown
f521b12b0e
Revert "nixos/amazon-image: (temporarily) use fixed disk size again"
...
This reverts commit 6a8359a92ab501ae62739e9d3302f48e3e73c750.
2021-04-24 02:38:25 +00:00
Luke Granger-Brown
d97478e369
Merge pull request #120481 from lukegb/temp-ec2-fixed-disk
...
nixos/amazon-image: (temporarily) use fixed disk size again
2021-04-24 03:32:58 +01:00
Sandro
bbffc43d56
Merge pull request #120450 from fortuneteller2k/add-zls
2021-04-24 03:59:57 +02:00
Norbert Melzer
65499c8a82
lefthook: 0.7.2 -> 0.7.3 ( #120346 )
...
Co-authored-by: Louis Bettens <lourkeur@users.noreply.github.com>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-04-24 03:57:36 +02:00
Sandro
01ad91b02c
Merge pull request #120173 from nbren12/gcsfs
2021-04-24 03:53:34 +02:00
Sandro
e3e6b73701
Merge pull request #119706 from nyanotech/master
...
nixos/printers: fix ensureDefaultPrinter
2021-04-24 03:49:09 +02:00
Austin Butler
0fffe0ed7e
just: fix Darwin build
2021-04-23 18:47:37 -07:00
Jan Tojnar
38e20a3242
common-updater-scripts: Replace flake source by local path
...
When update-source-version is run in a repo with flake-compat,
it would find the files in Nix store.
Let’s replace them with the local path of the repository.
2021-04-24 03:42:01 +02:00
Jan Tojnar
3c781e6d19
common-updater-scripts: handle default.nix without arguments
...
So that the script can be used outside of nixpkgs.
For example, the default.nix recommended by flake-compat does not take arguments.
2021-04-24 03:41:33 +02:00
Sandro
8dc1cc0586
Merge pull request #120156 from r-ryantm/auto-update/bupstash
...
bupstash: 0.8.0 -> 0.9.0
2021-04-24 03:35:30 +02:00
Sandro
2011fc8bda
Merge pull request #120443 from dotlambda/spotdl-3.5.2
...
spotdl: 3.5.1 -> 3.5.2
2021-04-24 03:34:53 +02:00
Sandro
91e505eedc
Merge pull request #120353 from Mic92/ghidra
...
ghidra: 9.2.2 -> 9.2.3
2021-04-24 03:25:22 +02:00
Aiken Cairncross
0098f76b1a
or-tools: fix build ( #120441 )
2021-04-24 03:15:14 +02:00
Luke Granger-Brown
d385b8f597
python3Packages.tensorflow: mark as requiring big-parallel
...
The Bazel build part of tensorflow builds can really use as many cores
as is available - to avoid blocking a small machine for literally hours
while it churns away, mark the build as big-parallel so we can schedule
it to run quickly on a machine with lots of cores.
2021-04-24 01:12:19 +00:00
Sandro
4fbf987e20
Merge pull request #120233 from nbren12/fix-dask-glm
2021-04-24 03:10:54 +02:00
Bobby Rong
228276fbd0
doc/builders/images/*.xml: Convert to markdown
2021-04-24 09:06:33 +08:00
lunik1
cd3f083645
fdk-aac-encoder: 1.0.1 → 1.0.2 ( #120356 )
2021-04-24 03:05:07 +02:00
Sandro
551ed846bf
Merge pull request #120329 from onsails/tabnine
2021-04-24 03:04:31 +02:00
Sandro
a9d3fe2033
Merge pull request #120142 from r-ryantm/auto-update/alembic
...
alembic: 1.7.16 -> 1.8.0
2021-04-24 03:02:50 +02:00
Sandro
3fc50d6ff1
Merge pull request #120431 from 06kellyjac/terragrunt
...
terragrunt: 0.28.24 -> 0.29.0
2021-04-24 03:02:31 +02:00
Sandro
dcfb100bab
Merge pull request #120313 from fabaff/bump-metasploit
...
metasploit: 6.0.40 -> 6.0.41
2021-04-24 02:58:44 +02:00
Sandro
4213f6d839
Merge pull request #120045 from FlorianFranzen/sphinx-serve
2021-04-24 02:57:39 +02:00
Noah D. Brenowitz
ceeaf2d066
python3Packages.dask: fix sandboxed builds
...
Importing dask.dataframe in a sandboxed build results in a TypeError like
this:
File "/nix/store/nv60iri29bia4szhhcvsdxgsci4wxvp6-python3.8-dask-2021.03.0/lib/python3.8/site-packages/dask/dataframe/io/csv.py", line 392, in <module>
AUTO_BLOCKSIZE = auto_blocksize(TOTAL_MEM, CPU_COUNT)
File "/nix/store/nv60iri29bia4szhhcvsdxgsci4wxvp6-python3.8-dask-2021.03.0/lib/python3.8/site-packages/dask/dataframe/io/csv.py", line 382, in auto_blocksize
blocksize = int(total_memory // cpu_count / memory_factor)
TypeError: unsupported operand type(s) for //: 'int' and 'NoneType'
This occurs because dask.dataframe has a non-deterministic component which
generates an automatic chunk-size based on system information.
This went unnoticed because the dask tests were disabled.
Changes:
- add a patch making the chunk-size inference more robust
- re-enable the tests
Resolves #120307
2021-04-23 17:57:01 -07:00
Sandro
965d590fc5
Merge pull request #120234 from cmm/antlr3-c++20
...
antlr3: make C++ includes compatible with C++20
2021-04-24 02:56:41 +02:00
Sandro
aec6218bf0
Merge pull request #120331 from fabaff/nclib
...
python3Packages.nclib: init at 1.0.0
2021-04-24 02:55:59 +02:00
Sandro
b906c94ad9
Merge pull request #120320 from dotlambda/ffsend-0.2.71
...
ffsend: 0.2.68 -> 0.2.71
2021-04-24 02:55:16 +02:00
Sandro
f190c1f67b
Merge pull request #120468 from fabaff/bump-watchdog
...
python3Packages.watchdog: 2.0.2 -> 2.0.3
2021-04-24 02:51:50 +02:00
Jan Tojnar
d788c091b6
common-updater-scripts: remove lib dependency
...
So that the script can be used outside of nixpkgs.
2021-04-24 02:50:53 +02:00
Martin Weinelt
49155acb74
handlr: 0.5.0 -> 0.6.1
...
Adds the missing shared-mime-info dependency and fixes tests.
2021-04-24 02:45:55 +02:00
Luke Granger-Brown
6a8359a92a
nixos/amazon-image: (temporarily) use fixed disk size again
...
As a temporary workaround for #120473 while the image builder is patched
to correctly look up disk sizes, partially revert
f3aa040bcbf39935e7e9ac7a7296eac9da7623ec for EC2 disk images only.
We retain the type allowing "auto" but set the default back to the
previous value.
2021-04-24 00:43:47 +00:00
Anderson Torres
2fd62d80f8
Merge pull request #120466 from AndersonTorres/quick-modifications
...
Vulnerability fixups:
- libnbd: 1.7.5 -> 1.7.7
- jasper: 2.0.28 -> 2.0.32
2021-04-23 21:42:56 -03:00
Martin Weinelt
01e4b493de
Merge branch 'master' into staging-next
2021-04-24 02:35:30 +02:00
Sandro
046923781b
Merge pull request #120327 from 06kellyjac/dockle
...
dockle: 0.3.11 -> 0.3.13
2021-04-24 02:31:32 +02:00
Sandro
8657f49d91
Merge pull request #120328 from fabaff/angrop
...
angrop: init at 9.0.6790
2021-04-24 02:31:18 +02:00
Martin Weinelt
bf18034b98
Merge pull request #120248 from fabaff/pydroid-ipcam
2021-04-24 02:25:51 +02:00
Martin Weinelt
8019e661ab
Merge pull request #119623 from drewrisinger/dr-pr-tqdm-bump
...
python3Packages.tqdm: 4.58.0 -> 4.60.0
2021-04-24 02:20:43 +02:00
github-actions[bot]
6e7c70d02d
Merge master into staging-next
2021-04-24 00:16:17 +00:00
Martin Weinelt
c298ef8855
Merge pull request #120476 from erictapen/change-maintainer-name
...
maintainers: Change first name and mail of erictapen
2021-04-24 01:52:43 +02:00
Martin Weinelt
d407a38a96
ajour: 1.0.0 -> 1.1.0
2021-04-24 01:50:09 +02:00
Sandro
aa6afa7fd0
Merge pull request #120332 from fabaff/bump-twitterapi
...
python3Packages.twitterapi: 2.7.1 -> 2.7.2
2021-04-24 01:42:47 +02:00
Sandro
0e99b7453f
Merge pull request #120333 from fabaff/bump-sendgrid
...
python3Packages.sendgrid: 6.6.0 -> 6.7.0
2021-04-24 01:42:16 +02:00
Sandro
4c011d282f
Merge pull request #120337 from marsam/update-scheme-manpages
...
scheme-manpages: 2021-01-17 -> 2021-03-11
2021-04-24 01:41:46 +02:00
Sandro
a2088e7308
Merge pull request #120326 from dotlambda/ytmusicapi-0.16.0
...
python3Packages.ytmusicapi: 0.15.1 -> 0.16.0
2021-04-24 01:40:51 +02:00
Sandro
e47ba29fac
Merge pull request #119962 from pstn/nheko-0.8.2
2021-04-24 01:40:40 +02:00
Sandro
dd2bec2c3b
Merge pull request #120311 from dotlambda/prs-0.2.8
...
prs: 0.2.7 -> 0.2.8
2021-04-24 01:39:09 +02:00
Sandro
1df834e6c6
Merge pull request #120308 from fabaff/bump-slack-sdk
...
python3Packages.slack-sdk: 3.4.2 -> 3.5.0
2021-04-24 01:37:05 +02:00
Sandro
e84351f8f6
Merge pull request #120299 from schnusch/esbuild
...
esbuild: 0.11.12 -> 0.11.13
2021-04-24 01:31:48 +02:00