Commit Graph

79509 Commits

Author SHA1 Message Date
Anderson Torres
8b0e7e5689
Merge pull request #178258 from ken-matsui/poac
poac: init at 0.4.1
2022-12-17 10:25:00 -03:00
Vladimír Čunát
0ba3487fc6
Merge #205270: staging-next 2022-12-09 2022-12-17 10:11:16 +01:00
Jörg Thalheim
2792921a4b
Merge pull request #205108 from omasanori/kakoune-2022.10.31
kakoune-unwrapped: 2021.11.08 -> 2022.10.31
2022-12-17 08:47:02 +00:00
Jörg Thalheim
668a2b2f33
Merge pull request #172237 from DeterminateSystems/bootspec-rfc
Support external bootloader backends (RFC-0125)
2022-12-17 08:35:53 +00:00
github-actions[bot]
05ca3d8285
Merge master into staging-next 2022-12-17 06:01:30 +00:00
AndersonTorres
11282edfe7 katriawm: init at 21.09 2022-12-17 00:13:38 -03:00
AndersonTorres
dc872f38d2 sxhkd: move to tools/X11
After all, it isn't a window manager.
2022-12-17 00:13:38 -03:00
github-actions[bot]
30b97b0e83
Merge master into staging-next 2022-12-17 00:02:17 +00:00
Sandro
a97a2e4c6d
Merge pull request #205373 from anthonyroussel/exiftool 2022-12-16 23:05:56 +01:00
Sandro
71849c5fd2
Merge pull request #197988 from laalsaas/mbidled 2022-12-16 22:56:11 +01:00
laalsaas
41f5d8a1f4 mbidled: init at unstable-2022-10-30 2022-12-16 22:33:30 +01:00
Vladimír Čunát
5bfe30aafa
Merge branch 'master' into staging-next 2022-12-16 21:58:10 +01:00
David Morgan
da1333cdd2
pms: init at unstable-2022-11-12 (#205941)
Co-authored-by: Nikolay Korotkiy <sikmir@disroot.org>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-12-16 21:30:42 +01:00
Sandro
236f1f5854
Merge pull request #205939 from deejayem/add-seashells 2022-12-16 21:22:45 +01:00
Vladimír Čunát
e6cd929c5e
Merge branch 'master' into staging-next 2022-12-16 11:09:31 +01:00
Naïm Favier
dc644c312f
Merge pull request #206061 from ncfavier/nginx-duplicate-modules 2022-12-16 10:09:19 +01:00
Sandro
ba5a98f1aa
Merge pull request #205965 from veprbl/pr/awkward_2_0_0 2022-12-16 02:21:29 +01:00
Naïm Favier
6c61c436cf
nginx: detect duplicate modules
Nginx breaks at runtime when duplicate modules are added. To detect
this, add a `name` key to all modules.

Also remove the outdated modsecurity v2 module and unify `modsecurity`
and `modsecurity-nginx`.
2022-12-16 01:57:14 +01:00
github-actions[bot]
b9ac6ee4d9
Merge master into staging-next 2022-12-16 00:02:17 +00:00
Artturi
f9b2c36a7f
Merge pull request #205701 from Artturin/deprecatereplacechars
lib.replaceChars: warn about being a deprecated alias
2022-12-15 23:46:51 +02:00
Artturi
999d9f70ad
Merge pull request #206184 from Artturin/androidenvinfirec
androidenv: use callPackage instead of import & fix infinite recursion
2022-12-15 22:33:54 +02:00
Artturin
05a2dfd674 lib.replaceChars: warn about being a deprecated alias
replaceStrings has been in nix since 2015(nix 1.10)

so it is safe to remove the fallback

d6d5885c15
2022-12-15 22:25:51 +02:00
figsoda
084fd69045
Merge pull request #206152 from figsoda/jumpy
jumpy: 0.4.3 -> 0.5.1
2022-12-15 15:00:15 -05:00
Artturin
a2f85e0fa8 androidenv: use callPackage instead of import & fix infinite recursion
infinite recursion was due to autoPatchelfHook being in buildInputs of
platform-tools, i will add a lint for it in nix-community/nixpkgs-lint.

```
$ nix build ".#pkgsCross.aarch64-android-prebuilt.hello" --show-trace 2>&1 | rg 'while evaluating the attr.+deriv'
    … while evaluating the attribute 'stdenv' of the derivation 'zlib-aarch64-unknown-linux-android-1.2.13'
    … while evaluating the attribute 'CPPFLAGS' of the derivation 'python3-aarch64-unknown-linux-android-3.10.8'
    … while evaluating the attribute 'setuptools' of the derivation 'python-catch-conflicts-hook'
    … while evaluating the attribute 'nativeBuildInputs' of the derivation 'python3.10-pyelftools-0.28'
    … while evaluating the attribute 'passAsFile' of the derivation 'python3-3.10.8-env'
    … while evaluating the attribute 'pythonInterpreter' of the derivation 'auto-patchelf-hook'
    … while evaluating the attribute 'buildInputs' of the derivation 'platform-tools-33.0.2'
    … while evaluating the attribute 'installPhase' of the derivation 'ndk-24.0.8215888'
    … while evaluating the attribute 'installPhase' of the derivation 'aarch64-unknown-linux-android-ndk-toolchain-24.0.8215888'
    … while evaluating the attribute 'bintools_bin' of the derivation 'aarch64-unknown-linux-android-ndk-toolchain-wrapper-24.0.8215888'
    … while evaluating the attribute 'bintools' of the derivation 'aarch64-unknown-linux-android-ndk-toolchain-wrapper-24.0.8215888'
    … while evaluating the attribute 'defaultNativeBuildInputs' of the derivation 'stdenv-linux'
    … while evaluating the attribute 'stdenv' of the derivation 'hello-aarch64-unknown-linux-android-2.12.1'
```

stdenv -> stdenv.cc -> bintools -> android-ndk-toolchain -> ndk -> platform-tools -> auto-patchelf-hook -> python3 -> zlib -> stdenv -> stdenv.cc -> ...

autoPatchelfHook was in buildInputs of platform-tools so we needed the host tools to build
it but platform-tools was a required tool
2022-12-15 21:55:22 +02:00
Dmitry Kalinkin
e62f497a2f pythonPackages.{awkward0,uproot3}: remove 2022-12-15 14:12:39 -05:00
Dmitry Kalinkin
02ba62f8f3 python3Packages.awkward-cpp: init at 2 2022-12-15 14:12:38 -05:00
Dmitry Kalinkin
a0b0a4ac29 python3Packages.scikit-build-core: init at 0.1.3 2022-12-15 14:12:37 -05:00
github-actions[bot]
eaf7260c5b
Merge master into staging-next 2022-12-15 18:01:21 +00:00
0x4A6F
064b4d4ac1
Merge pull request #206255 from helsinki-systems/fix/coturn
coturn: fix openssl issues
2022-12-15 17:08:24 +01:00
Martin Weinelt
94fa2d6c13
Merge pull request #206192 from dotlambda/home-assistant-here_travel_time
home-assistant: support here_travel_time component
2022-12-15 16:05:29 +01:00
github-actions[bot]
bf81ac4bc6
Merge master into staging-next 2022-12-15 12:01:09 +00:00
Fabián Heredia Montiel
2230108f55 python2Packages.typing: revert removal
This reverts commit ff69267377.
2022-12-15 00:28:46 -08:00
Fabián Heredia Montiel
8549e49c18 python2Packages.scandir: revert removal
This reverts commit 7d4a0668d2.

Closes https://github.com/NixOS/nixpkgs/issues/205742
2022-12-15 00:28:46 -08:00
Robert Schütz
883d08f116 python310Packages.here-transit: init at 1.2.0 2022-12-14 22:12:25 -08:00
Robert Schütz
1cc979c20f python310Packages.here-routing: init at 0.2.0 2022-12-14 22:08:51 -08:00
github-actions[bot]
823d14246a
Merge master into staging-next 2022-12-15 06:01:03 +00:00
Ken Matsui
8e89f701d3
poac: init at 0.4.1 2022-12-14 20:13:41 -08:00
figsoda
446bfd7430 jumpy: 0.4.3 -> 0.5.1
Diff: https://github.com/fishfolk/jumpy/compare/v0.4.3...v0.5.1

Changelog: https://github.com/fishfolk/jumpy/releases/tag/v0.5.1
2022-12-14 21:44:11 -05:00
Robert Schütz
f2711088ee python310Packages.bonsai: init at 5.1.1 2022-12-14 16:48:10 -08:00
github-actions[bot]
58a71457f7
Merge master into staging-next 2022-12-15 00:02:26 +00:00
AndersonTorres
e6bac9563a steghide: init at 0.5.1.1 2022-12-14 20:09:56 -03:00
Franz Pletz
48f8ea8226
Merge pull request #206132 from mayflower/init-below
below: init at 0.6.3
2022-12-14 22:47:29 +01:00
ajs124
c8528b82d2 coturn: don't build against openssl_1_1 anymore 2022-12-14 22:31:37 +01:00
Robin Gloster
54958086cb
Merge pull request #206071 from fpletz/pkg/cpp-jwt
cpp-jwt: init at 1.4
2022-12-14 21:13:27 +00:00
Robin Gloster
6de54be915
below: init at 0.6.3 2022-12-14 22:09:10 +01:00
Sandro
9fff194f06
Merge pull request #200148 from urandom2/wtwitch
Fixes https://github.com/NixOS/nixpkgs/issues/184685
2022-12-14 21:58:16 +01:00
Sandro
45babd80d1
Merge pull request #206053 from urandom2/imaginary
Fixes https://github.com/NixOS/nixpkgs/issues/204482
2022-12-14 21:56:51 +01:00
Sandro
911355b448
Merge pull request #206052 from urandom2/acorn
Fixes https://github.com/NixOS/nixpkgs/issues/204154
2022-12-14 21:54:52 +01:00
github-actions[bot]
eb81abe9c0
Merge master into staging-next 2022-12-14 18:01:37 +00:00
Anderson Torres
9e3b780055
Merge pull request #205778 from atorres1985-contrib/libverto
libverto: init at 0.3.2
2022-12-14 13:50:11 -03:00