Commit Graph

69542 Commits

Author SHA1 Message Date
Sandro
c53143dd09
Merge pull request #161240 from bzizou/irods-4.2.11-fixavro 2022-02-28 11:22:42 +01:00
Bobby Rong
ef8c2381d7
Merge pull request #158191 from yshym/tdesktop-3.5.1
tdesktop: 3.4.8 -> 3.5.2
2022-02-28 16:59:14 +08:00
Samuel Gräfenstein
434bdc8e4a skanlite: move to pkgs/application/kde 2022-02-28 16:50:59 +08:00
Elis Hirwing
4c419ef1c6
Merge pull request #161713 from drupol/feat/add-phing
php.packages.phing: init at 2.17.1
2022-02-28 08:06:25 +01:00
Daniel Fullmer
0a8007498f bash: use default PATH in FHS environments
If bash is executed within an environment where PATH is not set, it uses
the DEFAULT_PATH_VALUE compiled into bash to set PATH. In nixpkgs we set
this to /no-such-path by default. This makes sense in a nixpkgs/NixOS
environment since paths like /bin or /usr/bin should not be used.
However, when bash is used inside an FHS environment, this produces
results that differ from distributions which follow the FHS standard.

Before this change:
$ steam-run env -i /bin/bash -c 'echo $PATH'
/no-such-path

After this change:
$ steam-run env -i /bin/bash -c 'echo $PATH'
/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:.
2022-02-27 15:59:39 -08:00
Rok Garbas
993c35991b
Merge pull request #157693 from Radvendii/zammad
zammad: init at 5.0.2
2022-02-28 00:57:11 +01:00
zowoq
fa52a102be linuxPackages: use 5_10 kernel on i686 2022-02-27 15:04:37 -08:00
zowoq
881a109227 Revert "Revert "linuxPackages: bump default 5.10 -> 5.15""
This reverts commit 7546480323.
2022-02-27 15:04:37 -08:00
Martin Weinelt
71c7509733
Merge pull request #162086 from mweinelt/aquosctl 2022-02-27 23:33:21 +01:00
Martin Weinelt
b3bb79b6b1
aquosctl: init at unstable-2014-04-06 2022-02-27 23:07:12 +01:00
Ben Siraphob
79a41173be
Merge pull request #155479 from siraben/archivy-update 2022-02-27 14:29:07 -06:00
Ben Siraphob
cd1c866d87
readability-lxml: init at 0.8.1 2022-02-27 14:23:20 -06:00
Guillaume Girol
b9ecdae495
Merge pull request #161344 from ulrikstrid/ulrikstrid/tree-wide-native-inputs
ocamlPackages tree-wide: Move buildInputs that should be nativeBuildInputs
2022-02-27 19:49:07 +00:00
Michael Weiss
d61e45b686
llvmPackages_14: init at 2022-01-07
This is a temporary hack until I have time to update the patches for
14.0.0-rc1. We need llvmPackages_14 *NOW* for Chromium M99.
2022-02-27 19:11:30 +01:00
Martin Weinelt
308403c329
Merge pull request #161663 from felixsinger/update/pkgs/mumble 2022-02-26 22:38:26 +01:00
Felix Singer
c267e9ce37 mumble,murmur: 1.3.4 -> 1.4.231
Update version to 1.4.231.

Build 231 points to a specific commit from the 1.4.x branch adding many
fixes and improvements. Since this version is an unofficial release, add
an unstable prefix to the version string in Nixpkgs.

Signed-off-by: Felix Singer <felixsinger@posteo.net>
Signed-off-by: Franz Pletz <fpletz@fnordicwalking.de>
2022-02-26 22:08:22 +01:00
Vincent Laporte
3bcb49aba4 ocamlPackages.pycaml: remove at 0.82-14
This package has been unmaintained upstream for years and broken in
nixpkgs by 9a778368f2 in #152276.
2022-02-26 13:51:35 +01:00
florian on nixos (Florian Brandes)
69ec03d112
pgadmin3: move
moved pgadmin3 to pgadmin4 and renamed to 3.nix
added an alias for pgadmin->pgadmin4

Signed-off-by: florian on nixos (Florian Brandes) <florian.brandes@posteo.de>
2022-02-26 13:20:27 +01:00
florian on nixos (Florian Brandes)
0dda2d3888
pgadmin4: init at 6.3
Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2022-02-26 13:17:37 +01:00
Marek Fajkus
43e35154e3
Merge pull request #161423 from revol-xut/master
python27Packages.gtkme: init at version 1.5.1
2022-02-26 01:38:30 +01:00
0x4A6F
0c4aa446a0
Merge pull request #161393 from wahjava/update-zellij
zellij: 0.24.0 -> 0.25.0
2022-02-26 01:25:21 +01:00
Anderson Torres
5364c438e7
Merge pull request #161854 from AndersonTorres/new-nsxiv
nsxiv: init at 28
2022-02-25 18:27:30 -03:00
Artturi
4a553cdfbc
Merge pull request #161146 from Artturin/removeoldaliases1 2022-02-25 21:29:29 +02: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
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
Yevhen Shymotiuk
c3010a9971
tdesktop: 3.4.8 -> 3.5.2 2022-02-25 19:55:50 +02:00
AndersonTorres
dbd8653cd5 nsxiv: init at 28 2022-02-25 14:51:00 -03:00
0x4A6F
7ad39a4125
Merge pull request #161193 from Mic92/bird1
bird: drop bird1 package & modules; hardening
2022-02-25 17:03:09 +01:00
Ivv
2b9029fc3f
Merge pull request #160192 from AtilaSaraiva/oil
oil-buku: init at 0.3.2
2022-02-25 16:56:15 +01:00
Frederik Rietdijk
016913128a
Merge pull request #161835 from FRidh/dask-panel
python3.pkgs.{dask, panel, datashader}: fix packages
2022-02-25 14:45:47 +01:00
Sandro
ad8e86d72f
Merge pull request #160155 from Etjean/python-aesara 2022-02-25 14:30:33 +01:00
Frederik Rietdijk
51ef95e6fa python3.pkgs.dask: don't offer an option for extras-require
Using such an option within the package set this way will result in
different packages depending on different versions of dask and thereby
collisions.

Instead, we can simply declare in the package offering the extras the
packages the extra needs.
2022-02-25 14:04:07 +01:00
revol-xut
ff845153ac
python27Packages.gtkme: init at version 1.5.1 2022-02-25 14:00:45 +01:00
Yuka
0702d31a28
schildichat: 1.9.8-sc.1 -> 1.10.3-sc.0.test.1 (#161584)
The latest release is being held back because there is an issue with
Electron 15 crashing on some platforms.
NixOS seems to be not affected by this issue, and the upstream
developers say this test release should be fine otherwise.
This also means we can have a SchildiChat build that is not using the
EOL/insecure Electron 13.x.
2022-02-25 13:56:23 +01:00
Jörg Thalheim
9abf72f229
bird1: drop package + modules
reason: no longer maintained upstream.
2022-02-25 11:39:34 +01:00
Anderson Torres
b638edd948
Merge pull request #160834 from DieracDelta/grcov
grcov: init at 0.8.7
2022-02-24 22:42:13 -03:00
Justin Restivo
e79a646298 grcov: init at 0.8.7 2022-02-24 18:54:25 -05:00
AndersonTorres
3f19fc37a3 Move misc/vim-plugins to applications/editors/vim/plugins 2022-02-24 20:26:07 -03:00
Pol Dellaiera
cdfd5b47fc
php.packages.phing: init at 2.17.1 2022-02-24 21:08:05 +01:00
Samuel Dionne-Riel
0adf99aee4
Merge pull request #156005 from zhaofengli/pi02
Update Raspberry Pi packages
2022-02-24 15:05:23 -05:00
Anderson Torres
f15188d1b8
Merge pull request #160344 from AndersonTorres/move-vscode-plugins
Move misc/vscode-extensions to applications/editors/vscode/extensions
2022-02-24 14:50:40 -03:00
Robert Schütz
9568aa1808 python3Packages.pysignalclirestapi: init at 0.3.18 2022-02-24 17:23:18 +00:00
Anderson Torres
36fae616c6
Merge pull request #161678 from AndersonTorres/new-misc
wxwidgets: remove darwin from inputs
2022-02-24 14:18:31 -03:00
Martin Weinelt
86fa4eeeb8
Merge pull request #161684 from dotlambda/volvooncall-init 2022-02-24 18:01:09 +01:00
Robert Schütz
3a6d134b23 python3Packages.volvooncall: init at 0.9.2 2022-02-24 16:39:13 +00:00
AndersonTorres
b7304edb3f wxwidgets: remove darwin from inputs 2022-02-24 13:13:19 -03:00
Dustin Frisch
78626c8200
k40-whisperer: init at 0.59 2022-02-24 15:58:30 +01:00
Ulrik Strid
a13cdfe520 ocamlPackages tree-wide: Move buildInputs that should be nativeBuildInputs
To keep this for the future we also strictDeps where possible, including for janePackages, topkg, oasis and ocamlbuild.
This makes some closures significantly smaller and makes cross compilation easier
2022-02-24 14:39:27 +01:00
Anderson Torres
205927a987
Merge pull request #161422 from OPNA2608/darwinify/mednafen
mednafen,mednaffe: Enable for Darwin
2022-02-24 09:26:51 -03:00