h7x4
8f55b011e0
treewide: add meta.changelog ( #346488 )
...
* guix: add meta.changelog
* zile: add meta.changelog
* zoom: add meta.changelog
* zotify: add meta.changelog
* zpaqfranz: add meta.changelog
* zunit: add meta.changelog
* zxwing-cpp: add meta.changelog
* zxpy: add meta.changelog
* zydis: add meta.changelog
* zziplib: add meta.changelog
* j: add meta.changelog
* kyua: add meta.changelog
* json2ts: add meta.changelog
* igir: add meta.changelog
* ios-webkit-debug-proxy: add meta.changelog
* gpaste: add meta.changelog
* polkit_gnome: add meta.changelog
* papers: add meta.changelog
* libmsgraph: add meta.changelog
* quadrapassel: add meta.changelog
* gnome-nibbles: add meta.changelog
* decibels: add meta.changelog
* libgedit-amtk: add meta.changelog
* simple-scan: add meta.changelog
* gnome-klotski: add meta.changelog
* gnome-sound-recorder: add meta.changelog
* gnome-remote-desktop: add meta.changelog
* gnome-robots: add meta.changelog
* gnome-shell-extensions: add meta.changelog
* gnome-panel: add meta.changelog
* gnome-session: add meta.changelog
* gnome-keyring: add meta.changelog
* devhelp: add meta.changelog
* libgnome-keyring: add meta.changelog
* ghex: add meta.changelog
* gnome-connections: add meta.changelog
* lightsoff: add meta.changelog
* gnome-flashback: add meta.changelog
* livi: add meta.changelog
* mutter: add meta.changelog
* hitori: add meta.changelog
* gnome-initial-setup: add meta.changelog
* gnome-bluetooth: add meta.changelog
* gnome-shell: add meta.changelog
* gnome-sudoku: add meta.changelog
* ideamaker: add meta.changelog
* i2p: add meta.changelog
* lms: add meta.changelog
* adwaita-icon-theme: add meta.changelog
* gnome-applets: add meta.changelog
* flac123: add meta.changelog
* flaca: add meta.changelog
* flameshot: add meta.changelog
* flaresolverr: add meta.changelog
* a52dec: add meta.changelog
* hexbinhex: add meta.changelog
* dwl: add meta.changelog
* msolve: add meta.changelog
* jcli: add meta.changelog
* nmap: add meta.changelog
* nmapsi4: add meta.changelog
* labctl: add meta.changelog
* _1oom: add meta.changelog
* libipuz: add meta.changelog
* metacity: add meta.changelog
* sushi: add meta.changelog
* rygel: add meta.changelog
* zenity: add meta.changelog
* crosswords: add meta.changelog
* gnome-mahjongg: add meta.changelog
* alacarte: add meta.changelog
* loupe: add meta.changelog
* cheese: add meta.changelog
* atomix: add meta.changelog
* swell-foop: add meta.changelog
* alfis: add meta.changelog
* aperture: add meta.changelog
* atomic-swap: add meta.changelog
* besu: add meta.changelog
* bisq: add meta.changelog
* bitcoin-abc: add meta.changelog
* bitcoin-knots: add meta.changelog
* bitcd: add meta.changelog
* btcdeb: add meta.changelog
* btcpayserver: add meta.changelog
* 86box: add meta.changelog
* darling: add meta.changelog
* dosbox: add meta.changelog
* firebird-emu: add meta.changelog
* maiko: add meta.changelog
* accerciser: add meta.changelog
* adwaita-icon-theme-legacy: add meta.changelog
* dconf-editor: add meta.changelog
* eog: add meta.changelog
* evolution-data-server: add meta.changelog
* file-roller: add meta.changelog
* four-in-a-row: add meta.changelog
* gdm: add meta.changelog
* geary: add meta.changelog
* gitg: add meta.changelog
* gnome2048: add meta.changelog
* gnome-backgrounds: add meta.changelog
* gnome-text-editor: add meta.changelog
* gnome-tour: add meta.changelog
* gnome-user-share: add meta.changelog
* gxml: add meta.changelog
* tali: add meta.changelog
* totem: add meta.changelog
* mobile-broadband-provider-info: add meta.changelog
* avr: add meta.changelog
* brev-cli: add meta.changelog
* juce: add meta.changelog
* loc: add meta.changelog
* resholve: add meta.changelog
* rpiboot: add meta.changelog
* gerbera: add meta.changelog
* kdocker: add meta.changelog
* pmenu: add meta.changelog
* advancecomp: add meta.changelog
* adriconf: add meta.changelog
* interception-tools: add meta.changelog
* nabi: add meta.changelog
* gorilla-cli: add meta.changelog
* heygpt: add meta.changelog
* 6tunnel: add meta.changelog
* aria2: add meta.changelog
* logmein-hamachi: add meta.changelog
* maphosts: add meta.changelog
* qcal: add meta.changelog
* adreaper: add meta.changelog
* aflplusplus: add meta.changelog
* aide: add meta.changelog
* cameradar: add meta.changelog
* wpscan: add meta.changelog
* aha: add meta.changelog
* xcat: add meta.changelog
2024-10-04 22:35:12 +03:00
R. Ryantm
a80da3e729
v2ray-domain-list-community: 20240914091803 -> 20240920063125
2024-09-28 09:26:41 +00:00
Franz Pletz
e1635a35b9
nixos/nginx: add option typesHashMaxSize ( #341072 )
2024-09-26 14:42:26 +02:00
Izorkin
9343e69f8f
nixos/tests/nginx-mime: add check optimal size of types_hash
2024-09-26 10:51:59 +03:00
Artturin
e0464e4788
treewide: replace stdenv.is
with stdenv.hostPlatform.is
...
In preparation for the deprecation of `stdenv.isX`.
These shorthands are not conducive to cross-compilation because they
hide the platforms.
Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way
One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059
There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.
```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
R. Ryantm
4ddc9f80d6
ddccontrol-db: 20240304 -> 20240920
2024-09-20 13:38:20 +00:00
h7x4
9a6c76c4af
treewide: remove unused inputs ( #342672 )
2024-09-19 20:36:18 +02:00
Peder Bergebakken Sundt
8c8c27bb19
treewide: remove unused inputs
2024-09-18 01:00:07 +02:00
R. Ryantm
a1c4e5e029
v2ray-domain-list-community: 20240905162746 -> 20240914091803
2024-09-17 10:12:21 +00:00
R. Ryantm
9649c86e62
clash-geoip: 20240812 -> 20240912
2024-09-14 22:29:34 +00:00
github-actions[bot]
079813d5c4
Merge master into staging-next
2024-09-06 18:03:54 +00:00
R. Ryantm
c3aeb4f648
v2ray-domain-list-community: 20240829063032 -> 20240905162746
2024-09-06 08:12:20 +00:00
K900
23b4832da0
Merge remote-tracking branch 'origin/master' into staging-next
2024-09-04 08:53:48 +03:00
Nick Cao
0ac785f56e
dbip-country-lite: 2024-08 -> 2024-09 ( #339259 )
2024-09-03 15:36:01 -04:00
Nick Cao
473bba08fe
dbip-country-lite: 2024-08 -> 2024-09
2024-09-03 10:14:36 -04:00
github-actions[bot]
179b0a961b
Merge master into haskell-updates
2024-08-31 00:15:04 +00:00
github-actions[bot]
fab50d5f8d
Merge staging-next into staging
2024-08-31 00:13:46 +00:00
R. Ryantm
b30c402f27
v2ray-domain-list-community: 20240823035651 -> 20240829063032
2024-08-30 18:06:57 +00:00
github-actions[bot]
05e9b68552
Merge master into haskell-updates
2024-08-26 00:14:58 +00:00
github-actions[bot]
41ae34fbe3
Merge staging-next into staging
2024-08-25 18:04:08 +00:00
R. Ryantm
047bcbcca5
v2ray-domain-list-community: 20240817092737 -> 20240823035651
2024-08-25 00:47:04 +00:00
Johannes Jöns
615a87e31e
Merge pull request #334608 from r-ryantm/auto-update/publicsuffix-list
...
publicsuffix-list: 0-unstable-2024-06-19 -> 0-unstable-2024-08-21
2024-08-24 12:27:47 +00:00
Tim Cuthbertson
911aa1440f
treewide: support NIX_SSL_CERT_FILE as an impureEnvVar
...
This envvar is also added to lib.proxyImpureEnvVars since it's
typically required for https proxies.
This change also updates fetchgit and go module fetching to use this
envvar. NIX_GIT_SSL_CAINFO is still supported for backwards
compatibility in fetchgit.
2024-08-23 21:34:22 +10:00
R. Ryantm
6c166ced42
publicsuffix-list: 0-unstable-2024-06-19 -> 0-unstable-2024-08-21
2024-08-22 05:33:20 +00:00
github-actions[bot]
5d0ae7495b
Merge master into haskell-updates
2024-08-21 00:14:19 +00:00
Weijia Wang
09bca27eaa
Merge pull request #335988 from r-ryantm/auto-update/spdx-license-list-data
...
spdx-license-list-data: 3.24.0 -> 3.25.0
2024-08-21 02:06:58 +02:00
R. Ryantm
2ccdb31638
spdx-license-list-data: 3.24.0 -> 3.25.0
2024-08-20 04:01:59 +00:00
maralorn
299d0e8ce5
all-cabal-hashes: 2024-07-31T18:11:52Z -> 2024-08-19T17:17:03Z
...
This commit has been generated by maintainers/scripts/haskell/update-hackage.sh
2024-08-20 00:32:30 +02:00
github-actions[bot]
0f0aff203c
Merge master into haskell-updates
2024-08-19 00:15:06 +00:00
R. Ryantm
e1b49b3af6
v2ray-domain-list-community: 20240810010807 -> 20240817092737
2024-08-18 04:44:22 +00:00
github-actions[bot]
afc10f2c19
Merge master into haskell-updates
2024-08-16 00:14:32 +00:00
R. Ryantm
66af6fde57
clash-geoip: 20240712 -> 20240812
2024-08-15 11:28:25 +00:00
github-actions[bot]
e8a5804e3c
Merge master into haskell-updates
2024-08-15 00:14:20 +00:00
github-actions[bot]
883e127c4b
Merge master into haskell-updates
2024-08-12 00:15:09 +00:00
github-actions[bot]
d1511265ba
Merge master into staging-next
2024-08-11 06:01:20 +00:00
R. Ryantm
685087de71
v2ray-domain-list-community: 20240726161926 -> 20240810010807
2024-08-11 00:24:21 +00:00
Vladimír Čunát
d4720e9c1e
Merge branch 'staging-next' into staging
...
There was a nontrivial conflict in pkgs/stdenv/linux/bootstrap-tools*
(reorganizing code vs. modifying it) I hope I really got it right.
2024-08-05 11:05:55 +02:00
github-actions[bot]
0689847252
Merge master into haskell-updates
2024-08-04 00:15:45 +00:00
Nick Cao
2ca365ca51
dbip-country-lite: 2024-07 -> 2024-08
2024-08-02 15:38:40 -04:00
github-actions[bot]
d3651f9b43
Merge master into haskell-updates
2024-08-02 00:14:04 +00:00
github-actions[bot]
203fa1d4a2
Merge staging-next into staging
2024-08-02 00:02:35 +00:00
K900
a4a42b3aec
Merge remote-tracking branch 'origin/staging-next' into staging
2024-08-01 08:57:50 +03:00
Nick Cao
5b783fcb9d
v2ray-domain-list-community: 20240713050854 -> 20240726161926
...
Diff: 2024071305...2024072616
2024-07-31 23:16:19 -04:00
maralorn
89004f5094
all-cabal-hashes: 2024-07-14T21:17:20Z -> 2024-07-31T18:11:52Z
...
This commit has been generated by maintainers/scripts/haskell/update-hackage.sh
2024-07-31 23:20:33 +02:00
K900
4f29b5a16b
Merge remote-tracking branch 'origin/staging-next' into staging
2024-07-31 08:57:17 +03:00
github-actions[bot]
9ebd5d0e8c
Merge master into haskell-updates
2024-07-31 00:12:53 +00:00
Sigmanificient
aab1113d4a
treewide: normalize maintainers list formatting
...
grep -rP 'maintainers = \[\];'
2024-07-30 16:26:22 +02:00
github-actions[bot]
0b204f8f69
Merge master into haskell-updates
2024-07-30 00:14:25 +00:00
Jörg Thalheim
5356420466
treewide: remove unused with statements from maintainer lists
...
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
-e 's!with lib.maintainers; \[ *\];![ ];!' \
-e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00
Sandro
631e7de895
Merge pull request #321081 from jopejoe1/publicsuffix-list
2024-07-28 21:10:11 +02:00