Commit Graph

47 Commits

Author SHA1 Message Date
Ember 'n0emis' Keske
601504d994 Remove n0emis as direct maintainer 2024-12-13 22:10:53 +01:00
Wolfgang Walther
7bd711ce36
zabbix-agent2-plugin-postgresql: 7.0.4 -> 7.0.6 (#362063) 2024-12-12 20:19:08 +01:00
Silvan Mosberger
4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00
R. Ryantm
eb28ce3cdc zabbix-agent2-plugin-postgresql: 7.0.4 -> 7.0.6 2024-12-05 12:21:33 +00:00
hand7s
b0ee9e616d zapret: 67 -> 69.5
zapret: 67 -> 69.5
  Co-authored-by: Nishimara <me@nishimara.com>
2024-12-04 17:02:53 +03:00
Jennifer Graul
07d95b3be7
zammad: format with nixfmt-rfc-style 2024-11-27 17:47:52 +01:00
Jennifer Graul
cdc7b2d51d
zammad: use stdenvNoCC 2024-11-27 17:46:55 +01:00
Jennifer Graul
ab34686a5b
zammad: move to pkgs/by-name/ 2024-11-27 09:42:13 +01:00
Austin Horstman
c82e5ccbea
zapzap: 5.3.1 -> 5.3.8 (#355795) 2024-11-18 20:22:36 -06:00
Jayden Andrews
1f690545a1
fix-single-space-whitespace 2024-11-16 22:24:48 +02:00
GreyStinger
8d0c0beaa3 zapzap: 5.3.1 -> 5.3.8
Minor version change + Owner moved source to a new location
2024-11-14 03:36:23 +02:00
countingbeeps
63c3362dc1 zap: add .desktop 2024-11-13 06:10:41 -06:00
Sandro Jäckel
3d28eb3b7b
zap-chip: split GUI off into zap-chip-gui 2024-11-11 16:22:32 +01:00
aleksana
571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00
Martin Weinelt
be5a9c8eb9
python3.pkgs.home-assistant-chip-*: build from source (#348149) 2024-11-07 03:37:12 +01:00
Guillaume Girol
1d1c704b2e zap-chip: init at 2024.09.27 2024-11-06 22:03:42 +01:00
Azat Bahawi
ff73cc63eb
zapret: 0-unstable-2024-08-01 -> 67 (#348160) 2024-11-01 21:27:36 +00:00
Weijia Wang
0280f6f259
zabbix-agent2-plugin-postgresql: 7.0.2 -> 7.0.4 (#348929) 2024-11-01 13:57:16 +01:00
Nishimara
308b635fee
zapret: 0-unstable-2024-08-01 -> 67 2024-11-01 13:48:13 +03:00
Anthony ROUSSEL
df594537ae zabbix-cli: 3.1.2 -> 3.1.3
https://github.com/unioslo/zabbix-cli/compare/3.1.2...3.1.3
2024-10-28 19:53:45 +01:00
R. Ryantm
2304fed4bd zabbix-agent2-plugin-postgresql: 7.0.2 -> 7.0.4 2024-10-15 23:45:26 +00:00
Anthony ROUSSEL
ae7e7534cd zabbix-cli: add anthonyroussel to maintainers 2024-10-05 22:15:52 +02:00
Anthony ROUSSEL
9209761f2c zabbix-cli: 2.3.2 -> 3.1.2
https://github.com/unioslo/zabbix-cli/compare/2.3.2...3.1.2
2024-10-05 22:15:49 +02:00
Anthony ROUSSEL
878f43f915 zabbix-cli: migrate to pkgs/by-name, reformat with nixfmt-rfc-style 2024-10-05 21:58:21 +02: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
nicoo
2641d97cbf pkgs/by-name: Convert hashes to SRI format
Reproduction script:
	# Bulk rewrite
	./maintainers/scripts/sha-to-sri.py pkgs/by-name
	# Revert some packages which will need manual intervention
	for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do
		git checkout -- "pkgs/by-name/${n:0:2}/${n}"
	done
2024-09-15 11:24:31 +02:00
Florian Brandes
7c05cf6b0e
zabbix-agent2-plugin-postgresql: format
Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2024-08-13 17:55:15 +02:00
Florian Brandes
72cc239f96
zabbix-agent2-plugin-postgresql: 6.4.15 -> 7.0.2
Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2024-08-13 17:55:14 +02:00
Nishimara
3e8fbb37ac
typo 2024-08-01 15:56:09 +03:00
Nishimara
798d1d109b
zapret: 0-unstable-2024-07-16 -> 0-unstable-2024-08-01 2024-08-01 15:49:08 +03:00
Nishimara
936bc73caa
zapret: create blank config 2024-08-01 15:42:18 +03:00
Sigmanificient
61fe0c0416 pkgs/by-name: remove unused arguments 2024-07-26 10:11:07 +02:00
nishimara
034f3eec9b
zapret: init as 0-unstable-2024-07-16 (#327675) 2024-07-16 23:08:33 +00:00
R. Ryantm
629c05b967 zabbix-agent2-plugin-postgresql: 6.4.14 -> 6.4.15 2024-06-11 09:19:45 +00:00
R. Ryantm
2c0d991d9e zabbix-agent2-plugin-postgresql: 6.4.12 -> 6.4.14 2024-05-01 17:14:05 +00:00
R. Ryantm
b2ce04c8f7 zapzap: 5.3 -> 5.3.1 2024-04-29 17:36:28 +00:00
R. Ryantm
35863bff31 zapzap: 5.2.1 -> 5.3 2024-04-18 04:20:27 +00:00
nixpkgs-merge-bot[bot]
84a2a1f9a1
Merge pull request #294036 from r-ryantm/auto-update/zabbix-agent2-plugin-postgresql
zabbix-agent2-plugin-postgresql: 6.0.25 -> 6.4.12
2024-03-31 14:53:06 +00:00
stuebinm
ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00
R. Ryantm
cb176b27b1 zabbix-agent2-plugin-postgresql: 6.0.25 -> 6.4.12 2024-03-08 20:10:51 +01:00
Peder Bergebakken Sundt
59a933b103
Merge pull request #278273 from gador/zabbix-agent2-plugin-postgresql
zabbix-agent2-plugin-postgresql: init at 6.0.25
2024-03-05 00:37:42 +01:00
Florian Brandes
c007f05c12
zabbix-agent2-plugin-postgresql: init at 6.0.25
Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2024-03-03 08:45:22 +01:00
R. Ryantm
cac6cb1f13 zapzap: 5.2 -> 5.2.1 2024-02-25 21:50:21 +00:00
Sandro Jäckel
90e333b596
zapzap: 5.1.3 -> 5.2
Changelog: https://github.com/zapzap-linux/zapzap/releases/tag/5.2
2024-02-17 18:15:29 +01:00
Sandro Jäckel
40929299ec
zapzap: 4.5.5.2 -> 5.1.3 2024-01-17 00:26:28 +01:00
Sandro Jäckel
8bf02ebc9b
zapzap: fix double wrapping, install icon in correct directory 2023-12-17 21:35:45 +01:00
eymeric
4ecb17e4cf zapzap: init at 4.5.5.2 2023-12-10 02:28:31 +01:00