Commit graph

18935 commits

Author SHA1 Message Date
Klemens Nanni 1a20dbc086 bpftrace: Rename *.8 to *.bt.8 to avoid bcc conflicts
bpftrace ships *.bt replacement scripts for the original bcc programs
but still installs their manual pages as *.8 rather than *.bt.8 which
conflicts with the original manual pages.

Rename them to recover the original manuals and avoid conflict spam:
```
building '/nix/store/jspx13hyfi2m9vlnbj5iywk6rxpxp7y0-system-path.drv'...
warning: collision between `/nix/store/dv7x07rmd2m7596f38kl9d5bnv545qz7-bpftrace-0.14.1-man/share/man/man8/biolatency.8.gz' and `/nix/store/lw1kw7077wk3j6cnvjrm904rs2w7785p-bcc-0.24.0/share/man/man8/biolatency.8.gz'
[... 28 more duplicate manuals ...]
```
2022-05-30 11:39:15 +02:00
7c6f434c 093bf95532
Merge pull request #175180 from fabaff/atop-bump
atop: 2.6.0 -> 2.7.1
2022-05-29 16:50:33 +00:00
Sergei Trofimovich c9a2833a57 syslinux: add -fcommon workaround
Workaround build failure on -fno-common toolchains like upstream
gcc-10. Otherwise build fails as:

    ld: acpi/xsdt.o:/build/syslinux-b404870/com32/gpllib/../gplinclude/memory.h:40: multiple definition of
      `e820_types'; memory.o:/build/syslinux-b404870/com32/gpllib/../gplinclude/memory.h:40: first defined here
2022-05-29 08:28:19 +01:00
Fabian Affolter 457d492c95 atop: 2.6.0 -> 2.7.1 2022-05-28 21:27:24 +02:00
Gabriel Ebner ddf273588e linuxPackages.digimend: unstable-2019-06-18 -> 10 2022-05-28 16:47:39 +02:00
Sandro 3aa3f5ea37
Merge pull request #174577 from andrevmatos/linux/zen
linux_zen: 5.17.7-zen1 -> 5.18.0-zen1
2022-05-27 19:25:34 +02:00
Sandro 820e0844eb
Merge pull request #174733 from klemensn/sysstat-fix-manual-pages
sysstat: Do not compress manual pages with xz(1)
2022-05-27 19:10:48 +02:00
Aaron Jheng 41098225dd
cshatag: 2019-12-03 -> 2.0 (#174927)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-05-27 18:33:20 +02:00
Artturi 60a0871486
Merge pull request #172391 from Artturin/deprecate-stdenv-glibc 2022-05-27 17:56:19 +03:00
Rick van Schijndel 6c5ca66f8b
Merge pull request #174680 from Mic92/nix-ld
nix-ld: disable build on non-linux platforms
2022-05-27 15:51:50 +02:00
Artturin c1fffdfffb treewide: change some glibc to stdenv.cc.libc 2022-05-27 05:57:43 +03:00
Maximilian Bosch 75f4c62775
linux/hardened/patches/5.4: 5.4.195-hardened1 -> 5.4.196-hardened1 2022-05-26 17:20:50 +02:00
Maximilian Bosch ec4b2a871d
linux/hardened/patches/5.17: 5.17.9-hardened1 -> 5.17.11-hardened1 2022-05-26 17:20:39 +02:00
Maximilian Bosch e97b03a780
linux/hardened/patches/5.15: 5.15.41-hardened1 -> 5.15.43-hardened1 2022-05-26 17:20:27 +02:00
Maximilian Bosch d8d0dd929e
linux/hardened/patches/5.10: 5.10.117-hardened1 -> 5.10.118-hardened1 2022-05-26 17:20:14 +02:00
Maximilian Bosch 63192641bb
linux/hardened/patches/4.19: 4.19.244-hardened1 -> 4.19.245-hardened1 2022-05-26 17:20:03 +02:00
Maximilian Bosch 08daee172e
linux/hardened/patches/4.14: 4.14.280-hardened1 -> 4.14.281-hardened1 2022-05-26 17:19:52 +02:00
Maximilian Bosch d505557a29
linux: 5.4.195 -> 5.4.196 2022-05-26 17:18:45 +02:00
Maximilian Bosch c57d757e1b
linux: 5.17.9 -> 5.17.11 2022-05-26 17:18:35 +02:00
Maximilian Bosch bc0db57d53
linux: 5.15.41 -> 5.15.43 2022-05-26 17:18:23 +02:00
Maximilian Bosch ec5629f3f2
linux: 5.10.117 -> 5.10.118 2022-05-26 17:18:12 +02:00
Maximilian Bosch 110b58f77e
linux: 4.9.315 -> 4.9.316 2022-05-26 17:18:01 +02:00
Maximilian Bosch b5c4a60bbe
linux: 4.19.244 -> 4.19.245 2022-05-26 17:17:51 +02:00
Maximilian Bosch f2e1f34e4c
linux: 4.14.280 -> 4.14.281 2022-05-26 17:17:42 +02:00
Klemens Nanni 3af642c13a sysstat: Do not compress manual pages with xz(1)
sysstat compresses manual pages using the `ZIP` environment variable
unless `COMPRESS_MANPG` is set.

`ZIP` seems to default to xz(1) and is for more than just compressing
manuals.

At least with `documentation.man.mandoc.enable = true;` this renders
them unreadable:
```
$ man -w mpstat
man: outdated mandoc.db lacks mpstat(1) entry, run makewhatis /nix/store/lk0r6ibvkrvaq96gp8h4rqgrd2q0c8q5-system-path/share/man
/nix/store/lk0r6ibvkrvaq96gp8h4rqgrd2q0c8q5-system-path/share/man/man1/mpstat.1.xz

```
(followed by `PAGER` showing compressed mpstat.1.xz content.)

Disable manual page compression during build and thus defer it to Nix:
```
gzipping man pages under /nix/store/wl2dwl1lhs9g5w2d5dhr0pcskp78nz42-sysstat-12.4.5/share/man/
```

This also avoids potential runtime incompatibilites in sysstat
(I am not a `services.systat` user).
2022-05-26 15:46:37 +02:00
sternenseemann 8b5e372c97
Merge pull request #168113 from a-m-joseph/ispowerpc-becomes-ispower32
lib/systems/inspect.nix: replace isPowerPC with isPower32BigEndian
2022-05-26 11:44:39 +02:00
Jörg Thalheim fcb339e294
nix-ld: disable build on non-linux platforms 2022-05-26 08:07:30 +02:00
Maciej Krüger 41e3072c81
Merge pull request #147232 from mkg20001/zen-tweaks 2022-05-26 06:44:54 +02:00
André Vitor de Lima Matos 208fd4f173
linuxKernel.kernels.linux_zen: 5.17.7-zen1 -> 5.18.0-zen1 2022-05-25 17:57:19 -03:00
André Vitor de Lima Matos 3c4e372c3f kernel/update-zen.sh: add support to .0 patch versions 2022-05-25 17:57:17 -03:00
Sandro 882fc91780
Merge pull request #174091 from alyssais/linux-5.18 2022-05-25 22:55:58 +02:00
Átila Saraiva Quintela Soares 8fe16d153a
linuxPackages.rtw88: 2021-04-19 to 2022-05-08, removed broken mark. (#174222)
* linuxPackages.rtw88: 2021-04-19 to 2022-05-08

added myself to the maintainers

* linuxPackages.rtw88: removing upper version limit for the broken mark
2022-05-25 22:20:35 +02:00
Artturin 0c4d65b21e treewide: stdenv.glibc -> glibc 2022-05-25 15:51:20 +03:00
Alyssa Ross 2b22a409c3 linuxPackages.netatop: fix build with Linux 5.18
With 5.18, implicit fallthrough is an error, and netatop hasn't caught
up yet.
2022-05-25 12:34:07 +00:00
Alyssa Ross d28b794ef0 linuxPackages.pktgen: 21.11.0 -> 22.04.1
21.11.0 didn't build with our version of DPDK.
2022-05-25 12:33:42 +00:00
Alyssa Ross 3aa1b44629 linuxPackages.vmware: mark broken on Linux 5.18 2022-05-25 12:29:13 +00:00
Alyssa Ross bd1aebae22 linuxPackages.virtualbox: mark broken on Linux 5.18 2022-05-25 12:29:13 +00:00
Alyssa Ross 3557c0f450 linuxPackages.rtl88xxau-aircrack: mark broken on Linux 5.18 2022-05-25 12:29:13 +00:00
Alyssa Ross 651ee5ecf5 linuxPackages.rtl8821ce: mark broken on Linux 5.18 2022-05-25 12:29:13 +00:00
Alyssa Ross b3f626f6a0 linuxPackages.rtl8192eu: mark broken on Linux 5.18 2022-05-25 12:29:13 +00:00
Alyssa Ross d156a9eca3 linuxPackages.nvidiabl: mark broken on Linux 5.18 2022-05-25 12:29:13 +00:00
Alyssa Ross 5b5c1f8cd1 linuxPackages.lttng-modules: mark broken on Linux 5.18 2022-05-25 12:29:13 +00:00
Alyssa Ross 93212d08c7 linuxPackages.kvmfr: mark broken on Linux 5.18 2022-05-25 12:29:13 +00:00
Alyssa Ross d4ee5c6571 linuxPackages.kvdo: mark broken on Linux 5.17+ 2022-05-25 12:29:13 +00:00
Alyssa Ross 791ef2e3eb linuxPackages.intel-speed-select: mark broken on Linux 5.18 2022-05-25 12:29:13 +00:00
Alyssa Ross 5bf6048f37 linuxPackages.facetimehd: mark broken on Linux 5.18 2022-05-25 12:29:13 +00:00
Alyssa Ross 9aa6f61df9 linuxPackages.dpdk: mark broken on Linux 5.18 2022-05-25 12:29:13 +00:00
Alyssa Ross fefb777b38 linuxPackages.dpdk-kmods: mark broken on Linux 5.18 2022-05-25 12:29:13 +00:00
Alyssa Ross 515938fed6 linuxPackages.dddvb: mark broken on Linux 5.18 2022-05-25 12:29:13 +00:00
Alyssa Ross fe564f56b4 linuxPackages.bbswitch: mark broken on Linux 5.18 2022-05-25 12:29:13 +00:00