Commit Graph

357487 Commits

Author SHA1 Message Date
K900
0c713dbed4 build-support/makeDesktopItem: make fully declarative, add all missing options
This updates makeDesktopItem to explicitly support all the fields in the spec,
converts list-like fields to native Nix lists instead of semicolon-separated strings,
and allows automatically generating [Desktop Action] sections from Nix code
instead of hardcoding them as extraConfig strings.
2022-02-25 13:40:38 -08:00
Anderson Torres
5364c438e7
Merge pull request #161854 from AndersonTorres/new-nsxiv
nsxiv: init at 28
2022-02-25 18:27:30 -03:00
R. Ryantm
c1844a2b58 suitesparse-graphblas: 6.1.4 -> 6.2.1 2022-02-25 13:22:31 -08:00
Maximilian Bosch
b9bd1d69b6
Merge pull request #161766 from r-ryantm/auto-update/cargo-make
cargo-make: 0.35.8 -> 0.35.9
2022-02-25 22:17:58 +01:00
Maximilian Bosch
c38d3659e3
Merge pull request #161768 from r-ryantm/auto-update/cargo-valgrind
cargo-valgrind: 2.0.2 -> 2.0.3
2022-02-25 22:05:45 +01:00
Anderson Torres
0656bcbfe8
Merge pull request #161871 from AndersonTorres/new-elisp
elisp-packages: updated at 2022-02-25
2022-02-25 17:44:43 -03:00
Uri Baghin
95fa0d6958
Merge pull request #161832 from 06kellyjac/opentelemetry-collector-contrib
opentelemetry-collector-contrib: 0.44.0 -> 0.45.1
2022-02-26 07:37:30 +11:00
R. Ryantm
2b32daedf4 freetds: 1.3.8 -> 1.3.9 2022-02-25 12:13:32 -08:00
Artturi
33720dcf08
Merge pull request #145159 from maxwindiff/fix-mariadb-auth-pam-flag 2022-02-25 22:11:44 +02:00
R. Ryantm
1808423ff2 oven-media-engine: 0.12.11 -> 0.13.0 2022-02-25 11:49:41 -08:00
Ben Siraphob
010dc3ff38
Merge pull request #161778 from abathur/bats_1.6.0 2022-02-25 13:46:31 -06:00
R. Ryantm
1c979d946b minizinc: 2.5.5 -> 2.6.0 2022-02-25 11:44:22 -08:00
AndersonTorres
270f7d21c7 elisp-packages: updated at 2022-02-25 2022-02-25 16:38:07 -03:00
R. Ryantm
6ca22f0c06 cargo-msrv: 0.14.2 -> 0.15.0 2022-02-25 11:37:26 -08:00
R. Ryantm
640f96d046 dprint: 0.22.0 -> 0.22.2 2022-02-25 11:37:19 -08:00
R. Ryantm
fcb5f68c28 blocky: 0.17 -> 0.18 2022-02-25 11:35:50 -08:00
R. Ryantm
050eb35cee duo-unix: 1.11.5 -> 1.12.0 2022-02-25 11:34:36 -08:00
Artturi
4a553cdfbc
Merge pull request #161146 from Artturin/removeoldaliases1 2022-02-25 21:29:29 +02:00
R. Ryantm
b8d575e5b5 python310Packages.fastapi: 0.73.0 -> 0.74.0 2022-02-25 11:29:16 -08:00
R. Ryantm
869c8e25ef ncnn: 20211208 -> 20220216 2022-02-25 11:27:16 -08:00
R. Ryantm
58526c2229 python310Packages.fastprogress: 1.0.0 -> 1.0.2 2022-02-25 11:26:27 -08:00
R. Ryantm
5918b5cb4d wakatime: 1.35.4 -> 1.37.0 2022-02-25 11:23:55 -08:00
R. Ryantm
4ee698fad8 python310Packages.bids-validator: 1.8.9 -> 1.9.2 2022-02-25 11:22:30 -08:00
R. Ryantm
b68668746c python310Packages.islpy: 2021.1 -> 2022.1.1 2022-02-25 11:20:07 -08:00
R. Ryantm
fc2cdef599 curaengine: 4.12.1 -> 4.13.1 2022-02-25 11:19:05 -08:00
R. Ryantm
0b92e6dc0a python310Packages.pyicloud: 0.10.2 -> 1.0.0 2022-02-25 11:16:39 -08:00
R. Ryantm
f8f5be8182 python310Packages.mariadb: 1.0.9 -> 1.0.10 2022-02-25 11:15:23 -08:00
R. Ryantm
f03446cc49 fits-cloudctl: 0.10.8 -> 0.10.9 2022-02-25 11:12:30 -08:00
Luflosi
0eb1d070c8 ipfs-migrator: 1.7.1 -> 2.0.2
https://github.com/ipfs/fs-repo-migrations/releases/tag/v2.0.2

This is pretty much a complete rewrite of the ipfs-migrator package.
In version 2.0.0 a major change was made to the way the migrator works. Before, there was one binary that contained every migration. Now every migration has its own binary. If fs-repo-migrations can't find a required binary in the PATH, it will download it off the internet. To prevent that, build every migration individually, symlink them all into one package and then wrap fs-repo-migrations so it finds the package with all the migrations.
The change to the IPFS NixOS module and the IPFS package is needed because without explicitly specifying a repo version to migrate to, fs-repo-migrations will query the internet to find the latest version. This fails in the sandbox, for example when testing the ipfs passthru tests.
While it may seem like the repoVersion and IPFS version are in sync and the code could be simplified, this is not the case. See https://github.com/ipfs/fs-repo-migrations#when-should-i-migrate for a table with the IPFS versions and corresponding repo versions.
Go 1.17 breaks the migrations, so use Go 1.16 instead. This is also the Go version used in their CI, see 3dc218e300/.github/workflows/test.yml (L4). See https://github.com/ipfs/fs-repo-migrations/pull/140#issuecomment-982715907 for a previous mention of this issue. The issue manifests itself when doing anything with a migration, for example `fs-repo-11-to-12 --help`:
```
panic: qtls.ClientHelloInfo doesn't match

goroutine 1 [running]:
github.com/marten-seemann/qtls-go1-15.init.0()
	github.com/marten-seemann/qtls-go1-15@v0.1.1/unsafe.go:20 +0x132
```
Also add myself as a maintainer for this package.
This fixes the test failure discovered in https://github.com/NixOS/nixpkgs/pull/160914.
See https://github.com/ipfs/fs-repo-migrations/issues/148 to read some of my struggles with updating this package.
2022-02-25 11:12:19 -08:00
R. Ryantm
1e7c64aae1 bcftools: 1.14 -> 1.15 2022-02-25 11:12:05 -08:00
R. Ryantm
668473f049 logseq: 0.5.9 -> 0.6.0 2022-02-25 11:09:32 -08:00
R. Ryantm
ce6fe7b1c2 nomad-autoscaler: 0.3.5 -> 0.3.6 2022-02-25 11:09:16 -08:00
R. Ryantm
0e0b02c1f7 python310Packages.qimage2ndarray: 1.8.3 -> 1.9.0 2022-02-25 11:09:12 -08:00
Samuel Ainsworth
8ccb9995cf
Merge pull request #158114 from larsr/master
cudatoolkit: added 11.6.0
2022-02-25 11:07:48 -08:00
R. Ryantm
db94accbca chezmoi: 2.12.0 -> 2.12.1 2022-02-25 11:06:46 -08:00
R. Ryantm
fedd518caf python310Packages.sphinxcontrib-tikz: 0.4.15 -> 0.4.16 2022-02-25 11:06:16 -08:00
Artturin
975f7d0463 aliases.nix: deprecate ocaml aliases 2022-02-25 21:05:35 +02:00
Artturin
a36f455905 aliases.nix: convert or remove aliases older than 2019-06-01
old non-throw aliases are converted into throws
and old throws are removed

./alias/maintainers/scripts/remove-old-aliases.py --file ./pkgs/top-level/aliases.nix --year 2019 --month 6
2022-02-25 21:05:31 +02:00
R. Ryantm
3bfc9a1cc6 libcouchbase: 3.2.4 -> 3.2.5 2022-02-25 11:03:59 -08:00
R. Ryantm
8af32947b4 firecracker: 0.25.2 -> 1.0.0 2022-02-25 11:02:29 -08:00
R. Ryantm
50705e9f0c openvswitch: 2.16.2 -> 2.17.0 2022-02-25 11:02:13 -08:00
R. Ryantm
3c962d11e4 gensio: 2.2.9 -> 2.3.6 2022-02-25 11:02:10 -08:00
R. Ryantm
4bc58eef87 mold: 1.0.3 -> 1.1 2022-02-25 11:01:53 -08:00
R. Ryantm
ac2165529b angband: 4.2.3 -> 4.2.4 2022-02-25 10:59:58 -08:00
R. Ryantm
6f4be68062 oil: 0.9.7 -> 0.9.8 2022-02-25 10:57:50 -08:00
R. Ryantm
733e15de50 gnome.gnome-mines: 40.0 -> 40.1 2022-02-25 10:57:22 -08:00
R. Ryantm
a658e56aef sabnzbd: 3.5.0 -> 3.5.1 2022-02-25 10:57:06 -08:00
R. Ryantm
919504028f ocserv: 1.1.5 -> 1.1.6 2022-02-25 10:56:57 -08:00
R. Ryantm
8b2bc00ec8 obs-studio: 27.2.0 -> 27.2.1 2022-02-25 10:54:05 -08:00
R. Ryantm
69380e5461 pspg: 5.5.3 -> 5.5.4 2022-02-25 10:53:45 -08:00