Commit Graph

16621 Commits

Author SHA1 Message Date
Ryan Mulligan
43c65852d6
Merge pull request #135996 from r-ryantm/auto-update/smemstat
smemstat: 0.02.08 -> 0.02.10
2021-09-12 18:40:07 -07:00
github-actions[bot]
dfd1161f35
Merge staging-next into staging 2021-09-13 00:02:22 +00:00
github-actions[bot]
ac962ee61a
Merge master into staging-next 2021-09-13 00:01:41 +00:00
Andreas Rammhold
64556974b6
systemd: 247.6 -> 249.4
This updates systemd to version v249.4 from version v247.6.

Besides the many new features that can be found in the upstream
repository they also introduced a bunch of cleanup which ended up
requiring a few more patches on our side.

a) 0022-core-Handle-lookup-paths-being-symlinks.patch:
  The way symlinked units were handled was changed in such that the last
  name of a unit file within one of the unit directories
  (/run/systemd/system, /etc/systemd/system, ...) is used as the name
  for the unit. Unfortunately that code didn't take into account that
  the unit directories themselves could already be symlinks and thus
  caused all our units to be recognized slightly different.

  There is an upstream PR for this new patch:
    https://github.com/systemd/systemd/pull/20479

b) The way the APIVFS is setup has been changed in such a way that we
   now always have /run. This required a few changes to the
   confinement tests which did assert that they didn't exist. Instead of
   adding another patch we can just adopt the upstream behavior. An
   empty /run doesn't seem harmful.

   As part of this work I refactored the confinement test just a little
   bit to allow better debugging of test failures. Previously it would
   just fail at some point and it wasn't obvious which of the many
   commands failed or what the unexpected string was. This should now be
   more obvious.

c) Again related to the confinement tests the way a file was tested for
   being accessible was optimized. Previously systemd would in some
   situations open a file twice during that check. This was reduced to
   one operation but required the procfs to be mounted in a units
   namespace.

   An upstream bug was filed and fixed. We are now carrying the
   essential patch to fix that issue until it is backported to a new
   release (likely only version 250). The good part about this story is
   that upstream systemd now has a test case that looks very similar to
   one of our confinement tests. Hopefully that will lead to less
   friction in the long run.

   https://github.com/systemd/systemd/issues/20514
   https://github.com/systemd/systemd/pull/20515

d) Previously we could grep for dlopen( somewhat reliably but now
   upstream started using a wrapper around dlopen that is most of the
   time used with linebreaks. This makes using grep not ergonomic
   anymore.

   With this bump we are grepping for anything that looks like a
   dynamic library name (in contrast to a dlopen(3) call) and replace
   those instead. That seems more robust. Time will tell if this holds.

   I tried using coccinelle to patch all those call sites using its
   tooling but unfornately it does stumble upon the _cleanup_
   annotations that are very common in the systemd code.

e) We now have some machinery for libbpf support in our systemd build.
   That being said it doesn't actually work as generating some skeletons
   doesn't work just yet. It fails with the below error message and is
   disabled by default (in both minimal and the regular build).

   > FAILED: src/core/bpf/socket_bind/socket-bind.skel.h
   > /build/source/tools/build-bpf-skel.py --clang_exec /nix/store/x1bi2mkapk1m0zq2g02nr018qyjkdn7a-clang-wrapper-12.0.1/bin/clang --llvm_strip_exec /nix/store/zm0kqan9qc77x219yihmmisi9g3sg8ns-llvm-12.0.1/bin/llvm-strip --bpftool_exec /nix/store/l6dg8jlbh8qnqa58mshh3d8r6999dk0p-bpftools-5.13.11/bin/bpftool --arch x86_64 ../src/core/bpf/socket_bind/socket-bind.bpf.c src/core/bpf/socket_bind/socket-bind.skel.h
   > libbpf: elf: socket_bind_bpf is not a valid eBPF object file
   > Error: failed to open BPF object file: BPF object format invalid
   > Traceback (most recent call last):
   >   File "/build/source/tools/build-bpf-skel.py", line 128, in <module>
   >     bpf_build(args)
   >   File "/build/source/tools/build-bpf-skel.py", line 92, in bpf_build
   >     gen_bpf_skeleton(bpftool_exec=args.bpftool_exec,
   >   File "/build/source/tools/build-bpf-skel.py", line 63, in gen_bpf_skeleton
   >     skel = subprocess.check_output(bpftool_args, universal_newlines=True)
   >   File "/nix/store/81lwy2hfqj4c1943b1x8a0qsivjhdhw9-python3-3.9.6/lib/python3.9/subprocess.py", line 424, in check_output
   >     return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
   >   File "/nix/store/81lwy2hfqj4c1943b1x8a0qsivjhdhw9-python3-3.9.6/lib/python3.9/subprocess.py", line 528, in run
   >     raise CalledProcessError(retcode, process.args,
   > subprocess.CalledProcessError: Command '['/nix/store/l6dg8jlbh8qnqa58mshh3d8r6999dk0p-bpftools-5.13.11/bin/bpftool', 'g', 's', '../src/core/bpf/socket_bind/socket-bind.bpf.o']' returned non-zero exit status 255.
   > [102/1457] Compiling C object src/journal/libjournal-core.a.p/journald-server.c.oapture output)put)ut)
   > ninja: build stopped: subcommand failed.

  f) We do now have support for TPM2 based disk encryption in our
     systemd build. The actual bits and pieces to make use of that are
     missing but there are various ongoing efforts in that direction.
     There is also the story about systemd in our initrd to enable this
     being used for root volumes. None of this will yet work out of the
     box but we can start improving on that front.

  g) FIDO2 support was added systemd and consequently we can now use
     that. Just with TPM2 there hasn't been any integration work with
     NixOS and instead this just adds that capability to work on that.

Co-Authored-By: Jörg Thalheim <joerg@thalheim.io>
2021-09-12 23:45:49 +02:00
Andreas Rammhold
1bfa488b1c
libbpf: 0.1.1 -> 0.4.0 2021-09-12 23:44:14 +02:00
Sandro
1cc2130093
Merge pull request #136503 from Kranzes/update-xanmod
linux_xanmod: 5.13.13 -> 5.14.3
2021-09-12 23:05:40 +02:00
Ilan Joselevich
4b0699e5d0 linux_xanmod: 5.13.13 -> 5.14.3 2021-09-12 22:22:51 +03:00
TredwellGit
5698fc0dfc linux-rt_5_4: 5.4.143-rt63 -> 5.4.143-rt64 2021-09-12 12:38:42 +00:00
TredwellGit
be590b86e2 linux: 5.4.144 -> 5.4.145 2021-09-12 12:38:02 +00:00
TredwellGit
b81ac24356 linux: 5.14.2 -> 5.14.3 2021-09-12 12:37:55 +00:00
TredwellGit
f0878c65eb linux: 5.13.15 -> 5.13.16 2021-09-12 12:37:47 +00:00
TredwellGit
71348196a0 linux: 5.10.63 -> 5.10.64 2021-09-12 12:37:36 +00:00
github-actions[bot]
7267016c66
Merge staging-next into staging 2021-09-12 12:01:42 +00:00
github-actions[bot]
acd45cb351
Merge master into staging-next 2021-09-12 12:01:10 +00:00
Jörg Thalheim
6fb71e46ca sysdig: fix linking against libabseil 2021-09-12 10:49:38 +02:00
Sergei Trofimovich
66a68c3a63 kexec-tools: pull upstream fix for -fno-common compiler
Fixes build failure against upstream gcc (defaults -fno-common)
2021-09-12 09:09:07 +01:00
Sergei Trofimovich
33472c371d libsepol: pull upstream fix for -fno-common compiler
Fixes build failure against upstream gcc (defaults -fno-common)
2021-09-12 08:39:13 +01:00
github-actions[bot]
8bc930ca39
Merge staging-next into staging 2021-09-12 00:02:23 +00:00
github-actions[bot]
3f2255106a
Merge master into staging-next 2021-09-12 00:01:45 +00:00
Sergei Trofimovich
71890f5995 audit: pull upstream fix for -fno-common compiler
Fixes build failure against upstream gcc (defaults -fno-common).
2021-09-11 22:49:10 +01:00
ajs124
e8f9aa9302
Merge pull request #137281 from NeQuissimus/kernels
Kernels 2021-09-10
2021-09-11 22:30:04 +02:00
github-actions[bot]
ff5297bcd3
Merge staging-next into staging 2021-09-11 12:01:45 +00:00
Alyssa Ross
56314db098
Merge remote-tracking branch 'nixpkgs/master' into staging-next
Conflicts:
	pkgs/development/compilers/ghc/8.10.7.nix
	pkgs/development/compilers/ghc/8.8.4.nix

I've removed the isWindows check from useLdGold in ghc, since that should
be covered by the new hasGold check.
2021-09-11 10:49:13 +00:00
Bernardo Meurer
98018cce2c
linuxPackages.bbswitch: use kernel's make flags
We should be using whatever makeflags were used to build the kernel
itself, otherwise clang-built kernels cannot use the module.
2021-09-10 14:42:17 -07:00
github-actions[bot]
fa42e187e1
Merge staging-next into staging 2021-09-10 18:01:52 +00:00
Martin Weinelt
d9341eafa2
Merge branch 'master' into staging-next 2021-09-10 15:04:01 +02:00
Tim Steinbach
6a50498b6d linux: 5.14.1 -> 5.14.2 2021-09-10 08:01:01 -04:00
Tim Steinbach
332100e6e1 linux: 5.13.14 -> 5.13.15 2021-09-10 08:01:01 -04:00
Tim Steinbach
6c41ccc972 linux: 5.10.62 -> 5.10.63 2021-09-10 08:01:01 -04:00
Tim Steinbach
820d68d2dc
linux/hardened/patches/5.14: init at 5.14.2-hardened1 2021-09-10 05:20:10 -04:00
Tim Steinbach
02b5c3b291
linux/hardened/patches/5.13: 5.13.14-hardened1 -> 5.13.15-hardened1 2021-09-10 05:20:09 -04:00
Tim Steinbach
3fe64b3728
linux/hardened/patches/5.10: 5.10.62-hardened1 -> 5.10.63-hardened1 2021-09-10 05:20:08 -04:00
github-actions[bot]
43f3e1bcc6
Merge staging-next into staging 2021-09-10 00:02:06 +00:00
github-actions[bot]
912b8082df
Merge master into staging-next 2021-09-10 00:01:31 +00:00
Timothy DeHerrera
6dbeb3190d
Merge pull request #126544 from jonringer/nixos-rebuild-use-substitutes
nixos-rebuild: add --use-substitutes option
2021-09-09 13:53:37 -06:00
Jörg Thalheim
1f4b1d941e
Merge pull request #135939 from Atemu/update/linux_lqx
linux_lqx: 5.13.9 -> 5.13.15
2021-09-09 20:26:49 +01:00
Atemu
2938a58f2d linux_lqx: 5.13.9 -> 5.13.15 2021-09-09 17:50:50 +02:00
github-actions[bot]
b56a4e5e6e
Merge staging-next into staging 2021-09-09 00:02:15 +00:00
github-actions[bot]
8cd1da2362
Merge master into staging-next 2021-09-09 00:01:35 +00:00
Pavol Rusnak
9ceefd7e37
Merge pull request #137088 from bricewge/master
maintainers: remove bricewge
2021-09-08 20:15:52 +02:00
github-actions[bot]
a84ab6724a
Merge staging-next into staging 2021-09-08 18:01:37 +00:00
github-actions[bot]
31efc58eb0
Merge master into staging-next 2021-09-08 18:01:03 +00:00
Alyssa Ross
1fb4400c91 linuxPackages.perf-tools: clarify license 2021-09-08 17:17:39 +00:00
Alyssa Ross
5c14c688d2 linuxPackages.bbswitch: add license 2021-09-08 17:17:27 +00:00
github-actions[bot]
888f8e8ac0
Merge staging-next into staging 2021-09-08 12:02:02 +00:00
github-actions[bot]
5ed67a849a
Merge master into staging-next 2021-09-08 12:01:27 +00:00
Brice Waegeneire
a49177e0ce maintainers: remove bricewge
So long, and thanks for all the fish!
2021-09-08 11:56:00 +02:00
Fabian Affolter
6adfc5114d
Merge pull request #136982 from ymatsiuk/upower
upower: 0.99.11 -> 0.99.13
2021-09-08 11:53:18 +02:00
github-actions[bot]
350e236585
Merge staging-next into staging 2021-09-08 06:01:57 +00:00
github-actions[bot]
ad1de317ad
Merge master into staging-next 2021-09-08 06:01:19 +00:00
Tim Steinbach
6a6ff4d0d8 linux_latest-libre: 18298 -> 18314 2021-09-07 20:15:06 -04:00
github-actions[bot]
23d1f1e2cf
Merge staging-next into staging 2021-09-08 00:02:21 +00:00
github-actions[bot]
58f8f1f058
Merge master into staging-next 2021-09-08 00:01:42 +00:00
ajs124
73204fed4b
Merge pull request #136944 from lovesegfault/hardened-update
linux_{4_14,4_19,5_4,5_10,5_13}_hardened: update patches
2021-09-07 22:56:36 +02:00
Bernardo Meurer
abfa8098ac
linux_5_13_hardened: 5.13.13 -> 5.13.14 2021-09-07 11:30:36 -07:00
Bernardo Meurer
1aba1d891f
linux_5_10_hardened: 5.10.61 -> 5.10.62 2021-09-07 11:30:35 -07:00
Bernardo Meurer
8169d9283e
linux_5_4_hardened: 5.4.143 -> 5.4.144 2021-09-07 11:30:34 -07:00
Bernardo Meurer
1c0e5d13a9
linux_4_19_hardened: 4.19.205 -> 4.19.206 2021-09-07 11:29:21 -07:00
Bernardo Meurer
17681be1d3
linux_4_14_hardened: 4.14.245 -> 4.14.246 2021-09-07 11:28:38 -07:00
Luke Granger-Brown
39ddedbc0b Merge remote-tracking branch 'upstream/staging' into staging-fix 2021-09-07 16:27:16 +00:00
Luke Granger-Brown
9094826af8 Merge remote-tracking branch 'upstream/staging-next' into staging-fix 2021-09-07 16:23:11 +00:00
Luke Granger-Brown
9501e5d2fd Merge commit '5b6c2380adb4c4ddb0f87152cef0016333ea5a4d' into staging-fix 2021-09-07 16:21:36 +00:00
Yurii Matsiuk
ea0f9ce763
upower: 0.99.11 -> 0.99.13 2021-09-07 14:40:12 +02:00
github-actions[bot]
c64a09f1ee
Merge staging-next into staging 2021-09-07 12:01:49 +00:00
github-actions[bot]
fbefda3466
Merge master into staging-next 2021-09-07 12:01:13 +00:00
Luke Granger-Brown
9af75b49ec Merge remote-tracking branch 'upstream/staging-next' into staging 2021-09-07 11:39:35 +00:00
Michael Weiss
ddc8a3a982
Merge pull request #136934 from primeos/fuse3
fuse3: 3.10.4 -> 3.10.5
2021-09-07 10:59:54 +02:00
Vladimír Čunát
09f5763784
Merge branch 'master' into staging-next
Conflicts:
 - pkgs/development/python-modules/pathspec/default.nix
   The hashes are equivalent, so it's not a real conflict.
 - pkgs/top-level/static.nix
   I can't see a solution, deffered redoing this to the later PR:
   https://github.com/NixOS/nixpkgs/pull/136849
2021-09-07 08:43:26 +02:00
Jörg Thalheim
da036efe0d
Merge pull request #135871 from abdelq/kmod-29
kmod: 27 -> 29
2021-09-07 03:43:00 +01:00
Jörg Thalheim
52b5ba2db5
Merge pull request #136771 from Mindavi/sysklogd/cross
sysklogd: support cross-compilation
2021-09-07 03:35:22 +01:00
Michael Weiss
f5a0c96b9a
fuse3: 3.10.4 -> 3.10.5 2021-09-06 23:01:58 +02:00
maxine [they]
2f6c17537d
Merge pull request #136284 from maxeaubrey/ell_0.43_iwd_1.17
ell: 0.42 -> 0.43, iwd: 1.16 -> 1.17
2021-09-06 11:26:01 +02:00
maxine [they]
c8472e26dd
Merge pull request #136218 from maxeaubrey/bluez_5.61
bluez: 5.60 -> 5.61
2021-09-06 11:25:46 +02:00
github-actions[bot]
79667a59e7
Merge master into staging-next 2021-09-06 00:01:28 +00:00
Jörg Thalheim
89b176219a
Merge pull request #136752 from Mic92/zen-kernel
linux_zen: 5.13.13-zen1 -> 5.14.1-zen1
2021-09-05 21:27:40 +01:00
github-actions[bot]
75dc00dbd8
Merge master into staging-next 2021-09-05 18:00:57 +00:00
Jörg Thalheim
87d338542b
Merge pull request #136773 from Mindavi/cramfsprogs/cross
cramfsprogs: support cross-compilation
2021-09-05 16:24:07 +01:00
Martin Weinelt
7f732aca66 Revert "Merge remote-tracking branch 'origin/python-unstable' into staging-next"
This reverts commit b041b2e1b2, reversing
changes made to 5b6c2380ad.
2021-09-05 15:02:25 +02:00
Martin Weinelt
b041b2e1b2 Merge remote-tracking branch 'origin/python-unstable' into staging-next 2021-09-05 14:51:26 +02:00
github-actions[bot]
5b6c2380ad
Merge master into staging-next 2021-09-05 12:01:20 +00:00
Fabian Affolter
40e0738df1
Merge pull request #136055 from trofi/update-pax-utils
pax-utils: 1.2.8 -> 1.3.3
2021-09-05 11:35:33 +02:00
Fabian Affolter
4dd783a187
pax-utils: clarify license 2021-09-05 11:13:58 +02:00
Rick van Schijndel
b85d91762a cramfsprogs: support cross-compilation 2021-09-05 10:56:49 +02:00
Rick van Schijndel
780956e7cf sysklogd: support cross-compilation 2021-09-05 10:47:17 +02:00
Jörg Thalheim
1b4038bddf linux_zen: 5.13.13-zen1 -> 5.14.1-zen1 2021-09-05 07:55:20 +02:00
John Ericson
4ad0a67799
Merge pull request #136437 from Ericson2314/netbsd-compat-cross
netbsd.compat: Fix cross compilation
2021-09-05 00:46:54 -04:00
Sandro
fdf5387c25
Merge pull request #135921 from Stunkymonkey/os-specific-linux-pname-version
os-specific/linux: replace name with pname&version
2021-09-05 03:43:50 +02:00
Michael Weiss
6549c72937
Merge pull request #136701 from primeos/iproute2
iproute2: 5.13.0 -> 5.14.0
2021-09-05 00:10:28 +02:00
Maximilian Bosch
c1bc5a49b9
Merge pull request #136406 from maxeaubrey/cryptsetup_2.4.0
cryptsetup: 2.3.6 -> 2.4.0
2021-09-04 18:01:26 +02:00
Michael Weiss
247aed0528
iproute2: 5.13.0 -> 5.14.0
"End of summer sale, get your new iproute2 just in time for fall!
This is a relatively low volume release (maybe because of summer
doldrums)." [0]

[0]: https://lore.kernel.org/netdev/20210831120452.71325cd8@hermes.local/
2021-09-04 17:06:11 +02:00
github-actions[bot]
e750a74632
Merge staging-next into staging 2021-09-04 00:02:10 +00:00
Alyssa Ross
071a7a4583
Merge remote-tracking branch 'nixpkgs/master' into staging-next 2021-09-03 18:23:45 +00:00
Tim Steinbach
395d2eff17 linux_latest-libre: 18268 -> 18298 2021-09-03 12:55:42 -04:00
Tim Steinbach
979c0b77ab linux-rt_5_4: 5.4.138-rt62 -> 5.4.143-rt63 2021-09-03 12:55:42 -04:00
Tim Steinbach
3221114748 linux: 5.4.143 -> 5.4.144 2021-09-03 12:55:42 -04:00
Tim Steinbach
116141a188 linux: 5.14 -> 5.14.1 2021-09-03 12:55:42 -04:00
Tim Steinbach
ba3f560dc5 linux: 5.13.13 -> 5.13.14 2021-09-03 12:55:42 -04:00
Tim Steinbach
f57a2e0bed linux: 5.10.61 -> 5.10.62 2021-09-03 12:55:42 -04:00
Tim Steinbach
c57b2db48b linux: 4.9.281 -> 4.9.282 2021-09-03 12:55:42 -04:00
Tim Steinbach
5ed235352a linux: 4.4.282 -> 4.4.283 2021-09-03 12:55:42 -04:00
Tim Steinbach
9c8dbd4a1e linux: 4.19.205 -> 4.19.206 2021-09-03 12:55:42 -04:00
Tim Steinbach
ad44de1d94 linux: 4.14.245 -> 4.14.246 2021-09-03 12:55:42 -04:00
John Ericson
2fdb859716 netbsd: Make hard/soft float match systems settings 2021-09-03 14:20:12 +00:00
John Ericson
ad609d27b5 netbsd.compat: Fix cross compilation
Not to netbsd, where it isn't needed, but elsewhere.

A few things going on here:

 - Make compat use the "regular" not "host" makefile infra. This,
   however, makes more assumptions that the toolchain is BSD-like, and
   so we need to compensate for them with the likes of:

    - `LORDER=...` and `TSORT=...`

    - Move `export INSTALL_*` to install's setup hook so they don't interfere
      with coreutils install

 - Don't use `DESTDIR` for installing include files, instead set `INCSDIR`.
   This is more proper, but doesn't work when `INCSDIR` is set multiple
   times, unfortunately, as CLI defs override all other assignments. So
   instead set `INCSDIR0` on the CLI, and do some `INCSDIR =
   ${INCSDIR0}/...` in the relevant packages.

    - `INCSDIR` is set just in the NetBSD setup hook because FreeBSD uses
    `INCLUDEDIR`.
2021-09-03 14:19:49 +00:00
Graham Christensen
3677d4bc22 kexec-tools: rename from kexectools to match the project name 2021-09-03 10:17:21 -04:00
Alyssa Ross
742750ccfd linuxPackages.ddcci-driver: 0.3.3 -> 0.4.1 2021-09-03 13:20:34 +00:00
John Ericson
af58c2cc0c netbsd.compat: Don't configure twice 2021-09-03 03:09:05 +00:00
github-actions[bot]
e89bf40282
Merge staging-next into staging 2021-09-03 00:02:21 +00:00
github-actions[bot]
704a7a86ca
Merge master into staging-next 2021-09-03 00:01:42 +00:00
Bernardo Meurer
ab1d85c0b1
Revert "linuxPackages.zfs: fix m4 script when not using GCC"
This reverts commit 5280cdee8d.
2021-09-02 13:45:53 -07:00
Bernardo Meurer
a12606bef4
linuxPackages.zfs: use the kernel's stdenv when possible 2021-09-02 13:45:52 -07:00
github-actions[bot]
cad67905de
Merge staging-next into staging 2021-09-02 00:02:14 +00:00
github-actions[bot]
ce1d6621cd
Merge master into staging-next 2021-09-02 00:01:38 +00:00
Bernardo Meurer
03f44bd225
Merge pull request #136251 from lovesegfault/zfs-fix-configure
linuxPackages.zfs: fix m4 script when not using GCC
2021-09-01 18:15:02 +00:00
Maxine Aubrey
0e6c742620
cryptsetup: 2.3.6 -> 2.4.0
- https://mirrors.edge.kernel.org/pub/linux/utils/cryptsetup/v2.4/v2.4.0-ReleaseNotes
2021-09-01 18:57:13 +02:00
Maxine Aubrey
306f04e43d
iwd: 1.16 -> 1.17
- https://git.kernel.org/pub/scm/network/wireless/iwd.git/tree/ChangeLog?h=1.17
2021-09-01 18:05:22 +02:00
John Ericson
ba1dbe0173
Merge pull request #129971 from Ericson2314/bsd-source-merge
netbsd: Split out path merging from bsd setup hook
2021-09-01 11:21:02 -04:00
github-actions[bot]
af292b1cdd
Merge staging-next into staging 2021-09-01 12:01:50 +00:00
Alyssa Ross
c13cf1e76f
Merge remote-tracking branch 'nixpkgs/master' into staging-next 2021-09-01 07:47:01 +00:00
Abdelhakim Qbaich
ea93044e9e kmod: fixing darwin.patch 2021-08-31 22:16:27 -07:00
Bernardo Meurer
3e31a8d02f
Merge pull request #136249 from lovesegfault/ddcci-driver-makeflags
linuxPackages.ddcci-driver: use kernel's make flags
2021-08-31 23:39:20 +00:00
adisbladis
d521df8494
Merge pull request #136299 from adisbladis/zfs-unstable-2021-08-30
zfsUnstable: 2.1.0 -> unstable-2021-08-30
2021-08-31 14:15:50 -05:00
Bernardo Meurer
5abb70031c
Merge pull request #136247 from lovesegfault/nvidia-fixes 2021-08-31 17:57:18 +00:00
adisbladis
19ea42a1f6
zfsUnstable: 2.1.0 -> unstable-2021-08-30 2021-08-31 09:59:20 -05:00
Alyssa Ross
1dfaced689 linuxPackages.xmm7360-pci: mark broken on Linux 5.14 2021-08-31 11:08:55 +00:00
Alyssa Ross
357eacbcd4 linuxPackages.rtw88: mark broken on Linux 5.14 2021-08-31 11:08:55 +00:00
Bernardo Meurer
5280cdee8d
linuxPackages.zfs: fix m4 script when not using GCC 2021-08-30 17:25:19 -07:00
Bernardo Meurer
8afec3d92f
linuxPackages.ddcci-driver: use kernel's make flags 2021-08-30 17:12:05 -07:00
Bernardo Meurer
19e4afc912
linuxPackages.nvidia-x11: use makeFlags in builder.sh 2021-08-30 17:06:12 -07:00
Bernardo Meurer
4a8ab482e0
linuxPackages.nvidia_x11.settings: use makeFlags in preBuild's libXNVCtrl build 2021-08-30 17:06:11 -07:00
Bernardo Meurer
0b63366e6f
linuxPackages.nvidia_x11.settings: pick up nvidia_x11 makeFlags 2021-08-30 17:06:10 -07:00
Bernardo Meurer
fe31fdf43b
linuxPackages.nvidia_x11.persistenced: pick up nvidia_x11 makeFlags 2021-08-30 17:06:09 -07:00
Bernardo Meurer
636e17aab5
linuxPackages.nvidia_x11: apply kernel module makeFlags 2021-08-30 17:06:08 -07:00
Alyssa Ross
7f3a4f6b67 linuxPackages.isgx: 2.11 -> 2.14 2021-08-30 23:17:02 +00:00
Alyssa Ross
3e299737a2 linux_latest-libre: 18260 -> 18268 2021-08-30 20:25:18 +00:00
Alyssa Ross
8bfb576250 linux_latest: 5.13.13 -> 5.14 2021-08-30 20:25:18 +00:00
Fabián Heredia Montiel
ff0dfaaee0 nvidia_x11: 470.57.02 → 470.63.01 2021-08-30 20:24:52 +00:00
Alyssa Ross
7032ab6d61 linuxPackages.isgx: enable parallel building
Tested at -j48.
2021-08-30 19:29:45 +00:00
Alyssa Ross
5ad9e2a74b linuxPackages.akvcam: 1.2.0 -> 1.2.2
The qmake-based build didn't seem to work any more, but there's a
Kbuild-based build system available anyway, so let's just switch to
that and save a dependency.

Also clarify license.
2021-08-30 19:20:08 +00:00
Maxine Aubrey
9040a3b1bf
ell: 0.42 -> 0.43
- https://git.kernel.org/pub/scm/libs/ell/ell.git/tree/ChangeLog?h=0.43
2021-08-30 20:22:38 +02:00
Maxine Aubrey
c93de5d1d5
bluez: 5.60 -> 5.61
- http://www.bluez.org/release-of-bluez-5-61/
- https://github.com/bluez/bluez/blob/5.61/ChangeLog
2021-08-30 20:21:55 +02:00
github-actions[bot]
47adaf1d8d
Merge staging-next into staging 2021-08-30 18:01:37 +00:00
Martin Weinelt
e2575c7de1
Merge branch 'master' into staging-next 2021-08-30 16:08:03 +02:00
Alyssa Ross
3e25f7feaa linuxPackages.rtl88xxau-aircrack: parallel build
So much faster.  Tested at -j48.
2021-08-30 11:35:52 +00:00
Alyssa Ross
66a079fc31 linuxPackages.rtl88x2bu: parallel build
So much faster.  Tested at -j48.
2021-08-30 11:35:52 +00:00
Alyssa Ross
9ef6829aea linuxPackages.rtl8821cu: parallel build
Tested at -j48.
2021-08-30 11:35:52 +00:00
Alyssa Ross
6da5cc14c7 linuxPackages.rtl8821ce: parallel build
So much faster.  Tested at -j48.
2021-08-30 11:35:52 +00:00
Alyssa Ross
177074e3cb linuxPackages.rtl8821au: parallel build
So much faster.  Tested at -j48.
2021-08-30 11:35:52 +00:00
Alyssa Ross
ec33cdf902 linuxPackages.rtl8814au: parallel build
So much faster.  Tested at -j48.
2021-08-30 11:35:52 +00:00
Alyssa Ross
db1f8c596d linuxPackages.rtl8812au: parallel build
So much faster.  Tested at -j48.
2021-08-30 11:35:52 +00:00
Alyssa Ross
97389b7650 linuxPackages.rtl8188eus-aircrack: parallel build
So much faster.  Tested at -j48.
2021-08-30 11:35:52 +00:00
Alyssa Ross
9908972055 linuxPackages.lttng-modules: 2.12.6 -> 2.13.0
Fixes build with linuxPackages_5_14.
2021-08-30 10:11:22 +00:00
Julian Stecklina
2e6d563067 linuxPackages.tuxedo-keyboard: expose all kernel modules
This commit exposes in addition to the tuxedo-keyboard module:

- clevo_acpi
- clevo_wmi
- tuxedo_io

These modules are required to run the Tuxedo Control Center.
2021-08-29 19:57:42 +02:00
Julian Stecklina
f7286acdae linuxPackages.tuxedo-keyboard: 3.0.7 -> 3.0.8 2021-08-29 19:55:06 +02:00
Felix Buehler
540499bf10 os-specific/linux: replace name with pname&version 2021-08-29 11:28:34 +02:00
Sergei Trofimovich
a693aca24d pax-utils: 1.2.8 -> 1.3.3 2021-08-28 20:55:51 +01:00
github-actions[bot]
57ced08965
Merge staging-next into staging 2021-08-28 12:01:44 +00:00
github-actions[bot]
dbad333a72
Merge master into staging-next 2021-08-28 12:01:06 +00:00
Domen Kožar
09818c59fa
Merge pull request #135345 from prusnak/ghc-aarch64-darwin
ghc: enable build on aarch64-darwin (aka Apple Silicon)
2021-08-28 13:10:55 +02:00
Pavol Rusnak
236fd9c902 darwin.signingUtils: move signDarwinBinariesIn from fixupOutputHooks to postFixupHooks
to fix ghc build
2021-08-28 12:54:05 +02:00
github-actions[bot]
3b2a731f12
Merge staging-next into staging 2021-08-28 06:01:55 +00:00
Dmitry Kalinkin
abd395d269
Merge branch 'master' into staging-next 2021-08-28 00:52:21 -04:00
Bernardo Meurer
9bd880fa72
linux_xanmod: 5.13.12 -> 5.13.13 2021-08-27 18:54:20 -07:00
R. RyanTM
02cdfa5dc6 smemstat: 0.02.08 -> 0.02.10 2021-08-28 01:41:16 +00:00
R. RyanTM
d0b62a5419 sdparm: 1.11 -> 1.12 2021-08-28 01:25:25 +00:00
Abdelhakim Qbaich
605ccef432 kmod: proper license entry 2021-08-27 17:23:55 -07:00
github-actions[bot]
aba2f0cf55
Merge staging-next into staging 2021-08-27 18:01:56 +00:00
github-actions[bot]
ad3f4eefab
Merge master into staging-next 2021-08-27 18:01:20 +00:00
Tim Steinbach
d90b2fc264 linux-hardened: Fix update script 2021-08-27 12:24:48 -04:00
TredwellGit
4d8a8abb33 linux/hardened/patches/5.4: 5.4.142-hardened1 -> 5.4.143-hardened1 2021-08-27 12:24:08 -04:00
TredwellGit
2c9124efdb linux/hardened/patches/5.13: init at 5.13.13-hardened1 2021-08-27 12:24:08 -04:00
TredwellGit
2114075986 linux/hardened/patches/5.10: 5.10.60-hardened1 -> 5.10.61-hardened1 2021-08-27 12:24:08 -04:00
TredwellGit
3e58b9716e linux/hardened/patches/4.19: 4.19.204-hardened1 -> 4.19.205-hardened1 2021-08-27 12:24:08 -04:00
TredwellGit
fec4358b1e linux/hardened/patches/4.14: 4.14.244-hardened1 -> 4.14.245-hardened1 2021-08-27 12:24:08 -04:00
TredwellGit
ea89b8bc1f linux_latest-libre: 18239 -> 18260 2021-08-27 12:24:08 -04:00
TredwellGit
cc93163a95 linux-rt_5_10: 5.10.56-rt49 -> 5.10.59-rt52 2021-08-27 12:24:08 -04:00
TredwellGit
aeb198d7ce linux: 5.4.142 -> 5.4.143 2021-08-27 12:24:08 -04:00
TredwellGit
198f0a0f30 linux: 5.13.12 -> 5.13.13 2021-08-27 12:24:08 -04:00
TredwellGit
6c457d29b8 linux: 5.10.60 -> 5.10.61 2021-08-27 12:24:08 -04:00
TredwellGit
12ea01bac9 linux: 4.9.280 -> 4.9.281 2021-08-27 12:24:08 -04:00
TredwellGit
770b305874 linux: 4.4.281 -> 4.4.282 2021-08-27 12:24:08 -04:00
TredwellGit
500a91bf68 linux: 4.19.204 -> 4.19.205 2021-08-27 12:24:08 -04:00
TredwellGit
467e3a7a87 linux: 4.14.244 -> 4.14.245 2021-08-27 12:24:08 -04:00
github-actions[bot]
6e4706d62a
Merge staging-next into staging 2021-08-27 12:01:46 +00:00
github-actions[bot]
aced2eb830
Merge master into staging-next 2021-08-27 12:01:10 +00:00
Jörg Thalheim
7e70032907
Merge pull request #135857 from c00w/fix_rpieeprom
rapsberrypi-eeprom: Include magic symlinks so command runs
2021-08-27 08:19:13 +01:00
Abdelhakim Qbaich
7179ce3717 kmod: build with zstd support 2021-08-26 23:48:50 -07:00
Abdelhakim Qbaich
42e20c4e79 kmod: 27 -> 29 2021-08-26 23:48:11 -07:00
Colin L Rice
26286030e8 rapsberrypi-eeprom: Include magic symlinks so command runs
The rpi-eeprom-update commands relies on a default
symlink. This is purely relative and points to critical, but is in fact
published by upstream.

Without this, the rpi-eeprom-update command fails with an error message
- and has no help options to make it easy to figure out the magic flags
  to get it to do the right thing.
2021-08-26 23:31:33 -04:00
Jörg Thalheim
093349c14e linux_zen: 5.13.12-zen1 -> 5.13.13-zen1 2021-08-26 19:37:35 +02:00
markuskowa
49d037feae
Merge pull request #135761 from r-ryantm/auto-update/libfabric
libfabric: 1.13.0 -> 1.13.1
2021-08-26 16:18:23 +02:00
github-actions[bot]
1ed959d5eb
Merge staging-next into staging 2021-08-26 12:01:41 +00:00
github-actions[bot]
b13b005f0e
Merge master into staging-next 2021-08-26 12:01:09 +00:00
zowoq
13ea123c74 treewide: buildFlagsArray -> ldflags 2021-08-26 21:35:06 +10:00
R. RyanTM
f418d1d6ef libfabric: 1.13.0 -> 1.13.1 2021-08-26 08:38:13 +00:00
github-actions[bot]
90fa603351
Merge staging-next into staging 2021-08-25 18:01:39 +00:00
Vladimír Čunát
70e05c1003
Merge branch 'master' into staging-next 2021-08-25 19:42:15 +02:00
Sandro
695ab32a72
Merge pull request #135631 from r-ryantm/auto-update/iotop-c
iotop-c: 1.17 -> 1.18
2021-08-25 13:55:08 +02:00
Jörg Thalheim
29766697ff
Merge pull request #127922 from roblabla/enable-btf
linux-kernel: Enable BTF
2021-08-25 12:30:39 +01:00
R. RyanTM
e4d8156bf7 iotop-c: 1.17 -> 1.18 2021-08-25 06:20:11 +00:00
Julian Stecklina
016e8cf78c acpi_call: 1.2.1 -> 1.2.2 2021-08-24 20:26:28 +02:00
Martin Weinelt
86ebbbee73
Merge pull request #134066 from risicle/ris-openvswitch-2.15.1
openvswitch: 2.14.2 -> 2.15.1
2021-08-24 15:00:17 +02:00
Sandro
22936d81b4
Merge pull request #133763 from efim/wireguard-SoN 2021-08-24 10:24:03 +02:00
Sandro
cbd68fe334
Merge pull request #135294 from Mic92/linux_zen
linux_zen: 5.13.10-zen1 -> 5.13.12-zen1
2021-08-23 22:57:53 +02:00
Kevin Cox
c3df8057da
Merge pull request #121518 from Atemu/automatic-kernelTests
kernel/generic: add kernelTests automatically
2021-08-23 18:23:32 +00:00
Atemu
d4afb73971 kernels: remove manually declared kernelTests
It is not necessary to declare these manually anymore
2021-08-23 19:58:55 +02:00
Atemu
0a43b6d5e9 kernel/generic: add kernelTests automatically
Unfortunately, there seems to be no way of referencing an overridable version of
the package you're in, so it had to be stubed to work at all.

This isn't important for our current, very basic kernel nixosTests but might
become important when we add more sophisticated ones.
2021-08-23 19:57:49 +02:00
Jan Tojnar
4ff3577f25 Merge branch 'staging-next' into staging 2021-08-23 14:19:54 +02:00
Sandro
7a67fd9689
Merge pull request #135085 from Artturin/zenmaintained
zenmonitor,zenpower: switch to maintained forks
2021-08-23 13:32:37 +02:00
Sandro
c8dadde1d3
Merge pull request #134126 from tekeri/bluez-enable-deprecated
bluez: build missing bluetooth utilities
2021-08-23 12:24:35 +02:00
Sandro
cfa2ffe3ce
Merge pull request #135104 from Artturin/raspberryeeprom
raspberrypi-eeprom: wrap rpi-eeprom-config
2021-08-23 12:18:25 +02:00
Ryan Burns
1ebfe95372 cramfsswap: 1.4.1 -> 1.4.2, cleanup
* fix cross-compilation
* clarify license
2021-08-23 00:27:25 -07:00
Malte Brandy
5a774fc2f6
Merge branch 'master' into haskell-updates 2021-08-22 19:42:48 +02:00
Jörg Thalheim
5e6958fa75 linux_zen: 5.13.10-zen1 -> 5.13.12-zen1 2021-08-22 16:38:32 +02:00
Jörg Thalheim
237f52b502 b43: fix homepage 2021-08-22 16:07:52 +02:00
github-actions[bot]
42f8c46335
Merge staging-next into staging 2021-08-22 12:01:56 +00:00
Vladimír Čunát
53114d1a9a
Merge #135008: linux_*_hardened: update (fix build) 2021-08-22 11:44:05 +02:00
R. RyanTM
eef7318c71 linuxPackages_5_13.system76-power: 1.1.16 -> 1.1.17 2021-08-22 03:34:10 +00:00
github-actions[bot]
4c4f7353fa
Merge master into haskell-updates 2021-08-22 00:06:15 +00:00
Jan Tojnar
7a04c2ad68 Merge branch 'staging-next' into staging
- boost 171 removed on staging-next
- re-generated node-packages.nix

; Conflicts:
;	pkgs/development/java-modules/m2install.nix
;	pkgs/development/node-packages/node-packages.nix
;	pkgs/top-level/all-packages.nix
2021-08-22 01:13:41 +02:00
Artturin
b277a286cc raspberrypi-eeprom: wrap rpi-eeprom-config 2021-08-21 22:20:57 +03:00
David Wood
fec3877c15
wooting-udev-rules: add Lekker Edition rules (#124380)
* wooting-udev-rules: add Lekker Edition rules

Signed-off-by: David Wood <david.wood@codeplay.com>

* use dontunpack

Co-authored-by: Artturi <Artturin@artturin.com>
2021-08-21 19:51:12 +02:00
Artturin
ffc1e42523 zenmonitor,zenpower: switch to maintained forks
add myself to maintainers
2021-08-21 19:07:54 +03:00
Sandro
b2573f352e
Merge pull request #134578 from smancill/phase-hooks-use-strings
treewide: ensure pre/post phase hooks are strings
2021-08-21 14:49:30 +02:00
ajs124
5659733165 linuxPackages_5_4_hardened: 5.4.141 -> 5.4.142 2021-08-21 13:15:24 +02:00
ajs124
883db296a2 linuxPackages_5_10_hardened: 5.10.59 -> 5.10.60 2021-08-21 13:15:10 +02:00
Sandro
52c4168699
Merge pull request #122463 from kittywitch/libreelec-dvb-firmware
libreelec-dvb-firmware: init at 1.4.2
2021-08-21 02:23:00 +02:00
github-actions[bot]
4492115291
Merge master into haskell-updates 2021-08-21 00:05:38 +00:00
Sebastián Mancilla
8f94a33b38 treewide: ensure pre/post phase hooks are strings
Some derivations use lib.optional or lib.optionals when setting pre/post
phase hooks. Ensure the proper lib.optionalString is used.
2021-08-20 19:08:42 -04:00
ajs124
1d87f9866c
Merge pull request #134959 from helsinki-systems/upd/nftables
nftables: 0.9.9 -> 1.0.0
2021-08-21 00:34:58 +02:00
ajs124
b9b1fc1b38 linuxPackages_5_4_hardened: 5.4.139 -> 5.4.141 2021-08-21 00:08:24 +02:00
ajs124
580d4b687f linuxPackages_5_10_hardened: 5.10.57 -> 5.10.59 2021-08-21 00:08:24 +02:00
ajs124
a438b96c9e linuxPackages_4_19_hardened: 4.19.202 -> 4.19.204 2021-08-21 00:08:24 +02:00
ajs124
1120eafa97 linuxPackages_4_14_hardened: 4.14.243 -> 4.14.244 2021-08-21 00:08:01 +02:00
ajs124
e82f9673c5 linuxPackages_hardened: fix update.py
this is kind of hack, idk how this worked before, tbh
2021-08-21 00:06:21 +02:00
Sandro
0b3c8dcc3c
Merge pull request #134883 from delroth/restool-lsdk-20.12 2021-08-20 23:49:03 +02:00
Sandro
78566493e8
Merge pull request #126614 from jonringer/nixos-rebuild-prefer-localhost
nixos-rebuild: default buildHost to localhost
2021-08-20 22:33:22 +02:00
Shea Levy
60bbcc0a42
Merge branch 'auto-update/system76-firmware' of https://github.com/r-ryantm/nixpkgs 2021-08-20 13:54:22 -04:00
ajs124
e59a984427 nftables: 0.9.9 -> 1.0.0
https://lore.kernel.org/netdev/20210819173626.GA1776@salvia/T/
2021-08-20 16:36:08 +02:00
Sandro
8f1ed2363d
Merge pull request #134842 from r-ryantm/auto-update/tuigreet
greetd.tuigreet: 0.5.0 -> 0.6.1
2021-08-20 16:15:23 +02:00
Maximilian Bosch
40f2f48fbf
Merge pull request #134692 from TredwellGit/linux
Kernels 2021-08-18
2021-08-20 14:08:44 +02:00
github-actions[bot]
79f38d76c2
Merge master into haskell-updates 2021-08-20 00:06:05 +00:00
R. RyanTM
786f825bb0 system76-firmware: 1.0.24 -> 1.0.28 2021-08-19 21:58:54 +00:00
Pierre Bourdon
1fedcb8f9c
restool: init at 20.12 2021-08-19 23:15:34 +02:00
Bernardo Meurer
76053104ea
Merge pull request #134818 from L-as/v4l2loopback
v4l2loopback: Fix issue with buildEnv using bin output
2021-08-19 20:18:39 +00:00
R. RyanTM
470c8212ba greetd.tuigreet: 0.5.0 -> 0.6.1 2021-08-19 18:43:02 +00:00
Sandro
be000ad8e3
Merge pull request #134648 from ymatsiuk/firmware
firmwareLinuxNonfree: 2021-07-16 -> 2021-08-18
2021-08-19 19:33:22 +02:00
Las Safin
d8c9c038e6
v4l2loopback: Fix issue with buildEnv using bin output
See https://github.com/NixOS/nixpkgs/pull/134311#issuecomment-901952544
2021-08-19 15:24:49 +00:00
github-actions[bot]
323ea758dd
Merge staging-next into staging 2021-08-19 12:02:04 +00:00
Jörg Thalheim
de5b6e117d
Merge pull request #134708 from Mic92/zen
linuxPackages_zen: 5.13.9-zen1 -> 5.13.10-zen1
2021-08-19 09:17:44 +01:00
github-actions[bot]
3440070b83
Merge master into haskell-updates 2021-08-19 00:06:27 +00:00
github-actions[bot]
599a736772
Merge staging-next into staging 2021-08-19 00:02:01 +00:00
John Ericson
221ca6f2ff
Merge pull request #134463 from Ericson2314/stdenv-adapter-latebind
stdenv: Fix overriding + `overrideAttrs`
2021-08-18 19:01:54 -04:00
ajs124
cb2ed1c0ab apparmor: 3.0.1 -> 3.0.3 2021-08-18 17:36:39 -04:00
Bernardo Meurer
f38c807c61
linux_xanmod: 5.13.11 -> 5.13.12 2021-08-18 13:41:14 -07:00
Malte Brandy
340e60eaad
Merge branch 'master' into haskell-updates 2021-08-18 22:37:28 +02:00
Jörg Thalheim
e4db1c8847 linux_zen: add update script 2021-08-18 22:24:28 +02:00
Jörg Thalheim
27edf4ccb4 linuxPackages_zen: 5.13.9 -> 5.13.10-zen1 2021-08-18 22:24:15 +02:00
TredwellGit
4512ae3044 linux_latest-libre: 18210 -> 18239 2021-08-18 18:46:49 +00:00
TredwellGit
10472677e1 linux-rt_5_10: 5.10.56-rt48 -> 5.10.56-rt49 2021-08-18 18:46:34 +00:00
TredwellGit
0055f78736 linux: 5.4.139 -> 5.4.142 2021-08-18 18:46:00 +00:00
TredwellGit
7ff40c8d9e linux: 5.13.11 -> 5.13.12 2021-08-18 18:45:51 +00:00
TredwellGit
ab311a8b25 linux: 5.10.57 -> 5.10.60 2021-08-18 18:45:43 +00:00
TredwellGit
b7a564432b linux: 4.19.202 -> 4.19.204 2021-08-18 18:45:35 +00:00
TredwellGit
2b71c4caac linux: 4.14.243 -> 4.14.244 2021-08-18 18:45:26 +00:00
github-actions[bot]
cadf0193dd
Merge staging-next into staging 2021-08-18 18:01:40 +00:00
github-actions[bot]
57cedea2a2
Merge master into staging-next 2021-08-18 18:01:03 +00:00
John Ericson
f110a182a6 stdenv: Fix overriding + overrideAttrs
The old stdenv adapters were subtly wrong in two ways:

 - `overrideAttrs` leaked the original, unoverridden `mkDerivation`.

 - `stdenv.override` would throw away any manually-set `mkDerivation`
   from a stdenv reverting to the original.

Now, `mkDerivation` is controlled (nearly directly) via an argument, and
always correctly closes over the final ("self") stdenv. This means the
adapters can work entirely via `.override` without any manual `stdenv //
...`, and both those issues are fixed.

Note hashes are changed, because stdenvs no previously overridden like
`stdenvNoCC` and `crossLibcStdenv` now are. I had to add some
`dontDisableStatic = true` accordingly. The flip side however is that
since the overrides compose, we no longer need to override anything but
the default `stdenv` from which all the others are created.
2021-08-18 17:22:50 +00:00
Ryan Mulligan
624cd3fc41
Merge pull request #134431 from r-ryantm/auto-update/pcm
pcm: 202101 -> 202107
2021-08-18 06:11:41 -07:00
Yurii Matsiuk
3239c7bc8d
firmwareLinuxNonfree: 2021-07-16 -> 2021-08-18 2021-08-18 14:28:40 +02:00
github-actions[bot]
531afeda01
Merge staging-next into staging 2021-08-18 12:01:50 +00:00
github-actions[bot]
90d220f41f
Merge master into staging-next 2021-08-18 12:01:14 +00:00
Jörg Thalheim
c00ca66d7a
Merge pull request #134266 from jbcrail/linuxPackages.ply-2.1.1
linuxPackages.ply: 1.0.beta1-9e810b1 -> 2.1.1
2021-08-18 10:33:46 +01:00
roblabla
34150f86c0 linux-kernel: Enable BTF
BTF is a new, lightweight debug information format tailored specifically
for the needs of eBPF, allowing eBPF programs to be portable across
various kernel versions, configurations and distributions. This is used
by bpftrace and lots of new eBPF-based tooling to avoid a dependency
on LLVM on the host.

BTF debug information is enabled on all major distributions: Fedora 31+,
RHEL 8.2+, Ubuntu 20.10, Debian 11 and ArchLinux all have enabled it.

Enabling BTF debug information requires adding two new dependencies to
the kernel build: Python3 and pahole. Those will be used to generate the
BTF debugging information.
2021-08-18 10:40:35 +02:00
github-actions[bot]
b6a825a9c7
Merge staging-next into staging 2021-08-18 06:02:10 +00:00
github-actions[bot]
0c06e9acec
Merge master into staging-next 2021-08-18 06:01:31 +00:00
Joseph Crail
637bb5d085 Update package version to fix build
The build for the 2.1.1 release is broken, so I updated the packge
version to use the newer commits to fix the build.
2021-08-17 22:42:58 -07:00
Joseph Crail
cebb663086 Clarify specific GPL license 2021-08-17 22:42:23 -07:00
Joseph Crail
a07505d518 Reverse conditional in meta.broken 2021-08-17 22:41:30 -07:00
Ben Siraphob
8098d8f4cf
Merge pull request #134554 from SuperSandro2000/usbutils
usbutils: switch to pname + version
2021-08-17 21:03:56 -05:00
github-actions[bot]
1f6dedd364
Merge master into haskell-updates 2021-08-18 00:05:52 +00:00
github-actions[bot]
2341511023
Merge staging-next into staging 2021-08-18 00:01:59 +00:00
github-actions[bot]
893d6605ee
Merge master into staging-next 2021-08-18 00:01:24 +00:00
Ryan Mulligan
0944088287
Merge pull request #134485 from r-ryantm/auto-update/uclibc-ng
uclibc: 1.0.37 -> 1.0.38
2021-08-17 16:49:06 -07:00
Sandro Jäckel
919ee68433
usbutils: switch to pname + version 2021-08-18 00:28:01 +02:00
Timothy DeHerrera
1594c64eac
Merge pull request #134482 from r-ryantm/auto-update/usbutils
usbutils: 013 -> 014
2021-08-17 14:47:56 -06:00
Jan Tojnar
e286e1cfa0 Merge branch 'staging-next' into staging
- boost 167 removed on staging-next (7915d1e03f) × boost attributes are inherited on staging (d20aa4955d)

- linux kernels were moved to linux-kernels.nix on staging-next (c62f911507) × hardened kernels are versioned on staging (a5341beb78) + removed linux_5_12 (e55554491d)

- conflict in node-packages – I regenerated it using node2nix from nixos-unstable (does not build on staging)
2021-08-17 18:52:37 +02:00
R. RyanTM
925fc9c700 uclibc: 1.0.37 -> 1.0.38 2021-08-17 16:41:55 +00:00
R. RyanTM
e5b2a40a76 usbutils: 013 -> 014 2021-08-17 16:25:26 +00:00
R. RyanTM
4106550c20 pcm: 202101 -> 202107 2021-08-17 12:18:43 +00:00
Joseph Crail
bcb2def465 Switch to version tag for package revision 2021-08-16 23:11:22 -07:00
Joseph Crail
594d0501b6 Assign assertion to meta.broken 2021-08-16 23:08:35 -07:00
github-actions[bot]
b05ec1fedd
Merge master into staging-next 2021-08-17 06:01:21 +00:00
kat witch
c054f16ba7
libreelec-dvb-firmware: init at 1.4.2 2021-08-17 03:26:21 +01:00
Jasper
00037f7403
darwin.binutils: fix wrapper of as when cross-compiling to aarch64-darwin (#134097) 2021-08-16 22:12:51 -04:00
github-actions[bot]
585575043f
Merge master into haskell-updates 2021-08-17 00:09:16 +00:00
github-actions[bot]
8a131da1bc
Merge master into staging-next 2021-08-17 00:01:28 +00:00
tekeri
f1bb34f380 bluez: build missing bluetooth utilities 2021-08-17 04:12:32 +09:00
Maximilian Bosch
6546f6a63a
Merge pull request #134307 from Ma27/versioned-hardened-kernel
linuxPackages: drop latest_hardened, introduce versioned attributes
2021-08-16 21:09:22 +02:00
Maximilian Bosch
099113751e
linuxPackages_4_14_hardened: fix eval
Not sure if this is the right thing to do, but apparently we want this
setting for <4.18, so we hard-code it for 4.14 via `mkForce` (previously
this has led to conflicting definitions which is why the hardened 4.14
kernel never seems to have evaluated properly).
2021-08-16 20:46:02 +02:00
github-actions[bot]
cb937d70cd
Merge master into staging-next 2021-08-16 18:01:13 +00:00
Bernardo Meurer
575f35cf8c
linux_xanmod: 5.13.10 -> 5.13.11 2021-08-16 10:21:40 -07:00
Sandro
2de26665ff
Merge pull request #134311 from L-as/v4l2loopback 2021-08-16 16:14:08 +02:00
maralorn
d5f8216275
Merge pull request #126195 from NixOS/haskell-updates-ghc-8.10.5
ghc: 8.10.4 -> 8.10.6
2021-08-16 14:50:25 +02:00
Las Safin
47aa19484c
v4l2loopback: unstable-2020-04-22 -> unstable-2021-07-13 2021-08-16 12:12:41 +00:00
github-actions[bot]
c30d1d56fe
Merge master into staging-next 2021-08-16 12:01:50 +00:00
Las Safin
d72d1fe1e5
v4l2loopback: Add bin output with utils 2021-08-16 11:33:38 +00:00
Maximilian Bosch
e55554491d
Merge pull request #133587 from TredwellGit/linux_5_12
linux_5_12: remove
2021-08-16 11:08:42 +02:00
Arnout Engelen
d51f835165 intel2200BGFirmware: less fixed-output derivation
Move some logic out of the fixed-output fetchzip and to a
'regular' derivation
2021-08-16 10:52:00 +02:00
github-actions[bot]
e9080dd5e3
Merge staging-next into staging 2021-08-16 00:02:02 +00:00
github-actions[bot]
c73393b6c7
Merge master into staging-next 2021-08-16 00:01:22 +00:00
Joseph Crail
ac06d8d343 linuxPackages.ply: 1.0.beta1-9e810b1 -> 2.1.1 2021-08-15 12:35:31 -07:00
TredwellGit
f2e78916b9 linux: 5.13.10 -> 5.13.11 2021-08-15 13:36:22 +00:00
TredwellGit
9e9933a76b linux: 4.9.279 -> 4.9.280 2021-08-15 13:36:22 +00:00
TredwellGit
039764362b linux: 4.4.280 -> 4.4.281 2021-08-15 13:36:22 +00:00
Jan Tojnar
513701efce Merge branch 'staging-next' into staging 2021-08-15 10:45:11 +02:00
Jörg Thalheim
f251e39c45
Merge pull request #128134 from xaverdh/linux-package-set
move linux packages out of all-packages
2021-08-15 08:14:35 +01:00
github-actions[bot]
9edd0ebdfa
Merge master into staging-next 2021-08-15 00:01:37 +00:00
Sandro
ba3592ab96
Merge pull request #133920 from raboof/zd1211-firmware-less-fixed-output-derivation
zd1211-firmware: less fixed-output derivation
2021-08-15 01:15:09 +02:00
Robert Scott
acf041d75d openvswitch: 2.14.2 -> 2.15.1 2021-08-14 19:27:51 +01:00
sternenseemann
283d622397 darwin.xattr: init at 61.60.1 2021-08-14 17:06:29 +02:00
Jan Tojnar
cdb1d29692 Merge branch 'staging-next' into staging 2021-08-14 14:43:16 +02:00
Jan Tojnar
0aa35561e7 Merge branch 'master' into staging-next 2021-08-14 12:53:07 +02:00
Arnout Engelen
523cf0d817
zd1211-firmware: less fixed-output derivation
Move some logic out of the fixed-output fetchzip and to a
'regular' derivation
2021-08-14 11:20:03 +02:00
Artturi
7a8063e84b
Merge pull request #133321 from r-ryantm/auto-update/fwts
fwts: 20.11.00 -> 21.07.00
2021-08-14 00:46:06 +03:00
efim
4c205b2e8b wireguard: meta update 2021-08-13 13:54:09 +03:00
Bernardo Meurer
ebec5d0df1
linux_xanmod: 5.13.9 -> 5.13.10 2021-08-12 14:20:05 -07:00
TredwellGit
89a50ded98 linux-rt_5_4: 5.4.129-rt61 -> 5.4.138-rt62 2021-08-12 15:05:26 +00:00
TredwellGit
ff1408d8b0 linux: 5.13.9 -> 5.13.10 2021-08-12 15:05:26 +00:00
TredwellGit
20ed07939e linux: 4.4.279 -> 4.4.280 2021-08-12 15:05:26 +00:00
Dominik Xaver Hörl
c62f911507 top-level: move linux kernels, packages and related functions to linux-kernels.nix 2021-08-12 12:22:03 +02:00
Alyssa Ross
ad3ed16929 lvm2: fix musl patches; apply unconditionally
Alpine's version of the first patch no longer applied, because we're
on a newer lvm2 version.

The fixes in both of these patches are either Musl-specific, or
shouldn't negatively affect Glibc, so change to applying them
unconditionally so they don't bitrot in future.
2021-08-12 09:19:21 +00:00
Alyssa Ross
3bc7ad5378 lvm2: remove probably-unnecessary Musl patch
e606e4d6a9 ("lvm2: musl patches from alpine") added all these patches
from Alpine to fix Musl builds, but one doesn't actually seem related
to Musl.  The Alpine issue[1] that led to its introduction links to a
Gentoo issue[2] about the same thing on Glibc.

We shouldn't be applying a fix for a non-libc-specific bug only to
Musl builds, and if this was going to be an issue for us we'd expect
to have seen it on Glibc by now.  It's more likely that it's been
fixed in the meantime.

[1]: https://gitlab.alpinelinux.org/alpine/aports/-/issues/3107
[2]: https://bugs.gentoo.org/335492
2021-08-12 09:19:21 +00:00
TredwellGit
957f0485da linux_5_12: remove
https://lwn.net/ml/linux-kernel/1626791065147152@kroah.com/
2021-08-12 05:30:46 +00:00
github-actions[bot]
7ae0b00541
Merge staging-next into staging 2021-08-11 18:01:46 +00:00
github-actions[bot]
234c0d62da
Merge master into staging-next 2021-08-11 18:01:11 +00:00
Jan Tojnar
e26c0ffdb0
Merge pull request #133502 from maxeaubrey/fwupd_1.5.12
fwupd: 1.5.7 -> 1.5.12
2021-08-11 18:24:34 +02:00
Maxine Aubrey
2f3e3c788e
fwupd: 1.5.7 -> 1.5.12
- https://github.com/fwupd/fwupd/releases/tag/1.5.8
- https://github.com/fwupd/fwupd/releases/tag/1.5.9
- https://github.com/fwupd/fwupd/releases/tag/1.5.10
- https://github.com/fwupd/fwupd/releases/tag/1.5.11
- https://github.com/fwupd/fwupd/releases/tag/1.5.12
2021-08-11 16:53:47 +02:00
Jan Tojnar
807d3ec359 Merge branch 'staging-next' into staging
; Conflicts:
;	pkgs/tools/misc/t1utils/default.nix
2021-08-11 16:34:11 +02:00
Jan Tojnar
4e7e464ae8 Merge branch 'master' into staging-next
; Conflicts:
;	pkgs/tools/system/sg3_utils/default.nix
2021-08-11 16:22:42 +02:00
fortuneteller2k
a5ad9365a1 linux_xanmod: enable futex/futex2 2021-08-12 04:49:41 +08:00
Sandro
4ae944bb0a
Merge pull request #133286 from rvolosatovs/update/linux_zen
linux_zen: 5.13.7 -> 5.13.9
2021-08-11 13:14:47 +02:00
Sandro
773426cc24
Merge pull request #133405 from Atemu/update/linux_lqx
linux_lqx: 5.12.19 -> 5.13.9
2021-08-10 23:57:30 +02:00
Léo Gaspard
ab24cfb0d3 qmk-udev-rules: init at 0.13.23 2021-08-10 23:56:02 +02:00
Atemu
2aaf41173d linux_lqx: 5.12.19 -> 5.13.9 2021-08-10 20:37:56 +02:00
Maxine Aubrey
1590a4f82d
iwd: 1.15 -> 1.16 2021-08-10 11:15:18 +02:00
Maxine Aubrey
bc4484fa11
ell: 0.41 -> 0.42 2021-08-10 11:15:10 +02:00
R. RyanTM
edb14bad6a fwts: 20.11.00 -> 21.07.00 2021-08-10 06:28:00 +00:00
Kid
b43389f49d iasl: drop pacakge 2021-08-10 03:46:01 +00:00
Roman Volosatovs
a9bf9c44e5
linux_zen: 5.13.7 -> 5.13.9 2021-08-09 21:31:40 +02:00