Commit Graph

1806 Commits

Author SHA1 Message Date
Adam C. Stephens
d2d4c4f350
restic: 0.17.2 -> 0.17.3 (#354582) 2024-11-09 10:06:40 -05:00
Adam Stephens
38a52bbfd4
restic: disable tests on non-linux 2024-11-09 10:05:12 -05: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
Bruno Bigras
120103ec7c restic: 0.17.2 -> 0.17.3 2024-11-08 15:12:27 -05:00
Nick Cao
3855a624f8
duplicacy: 3.2.3 -> 3.2.4 (#353949) 2024-11-06 08:33:31 -05:00
Morgan Helton
a3b4f5ea49
duplicacy: move to by-name 2024-11-05 20:50:14 -06:00
Aleksana
50b81c674e
kopia: add updateScript and testVersion (#336949) 2024-10-31 17:27:35 +08:00
hellodword
27f2e9503a
restic: 0.17.1 -> 0.17.2 2024-10-27 16:22:41 +00:00
R. Ryantm
41e5a6d4f5 pgbackrest: 2.53.1 -> 2.54.0 2024-10-22 00:42:43 +00:00
Stanisław Pitucha
0d0c32e366 converve: fix darwin build
Add the required framework.
2024-10-15 19:04:54 +11:00
Maximilian Bosch
782b08ba3d
Merge: percona: update packages, init 8.4 (#346027) 2024-10-14 12:40:48 +02:00
Oliver Schmidt
f02bd5b0fc percona: correct licensing information
Corrects the partially wrong change from #313931, all Oracle MySQL
derivates are actually GPLv2 only.
2024-10-13 23:04:25 +02:00
Oliver Schmidt
4b5141e018 percona: deprecate innovation/lts release flavours
Percona upstream has decided not to create releases or each MySQL
innovation upstream release, but just for LTS releases.
https://www.percona.com/blog/no-mysql-9-x-innovation-releases-from-percona/
2024-10-13 23:04:24 +02:00
Oliver Schmidt
8d14fa2886 percona: apply nixfmt 2024-10-13 18:15:49 +02:00
Oliver Schmidt
1e514dc390 percona-xtrabackup_8_4: init at 8.4.0-1 2024-10-13 18:15:49 +02:00
Oliver Schmidt
a309521902 percona-xtrabackup_8_0: 8.0.36-30 -> 8.0.35-31 2024-10-13 18:15:49 +02:00
Oliver Schmidt
188b5df7cd percona-server, percona-xtrabackup: rework naming
When reworking the percona package naming towards the two release
streams "innovation" and "lts", I did not anticipate the case that two
releases are long-term supported in parallel, and that the latest
Innovation release is end-of-life and replaced by a more recent lts.

Hence, the first-level attribute names now reflect the package
major-minor versions again, augmented by attribute names pointing to
respective lts and innovation releases.
2024-10-13 17:52:05 +02:00
Mikael Voss
36f6b0fd27
bakelite: unstable-2022-02-12 -> unstable-2023-03-30 2024-10-09 19:28:26 +02:00
Randy Eckenrode
341a8aa7f7
bacula: fix build on Darwin
After the CoreFoundation hook was dropped, bacula requires the following
changes to build on Darwin:

* Ensure bacula links CoreFoundation. Override incorrectly failing
  `configure` tests and add gettext as a build input. Even if those
  tests pass, bacula only links CoreFoundation when it finds libintl.
* Add Kerberos framework. Required to build on x86_64-darwin.
2024-10-06 23:43:11 -04:00
R. Ryantm
04d34850b0 s3ql: 5.2.1 -> 5.2.2 2024-10-05 10:25:58 +00:00
Peder Bergebakken Sundt
68e9e37ba5
luckybackup: migrate to by-name (#344939) 2024-10-03 19:36:47 +02:00
Martin Weinelt
27b4e638c0
treewide: replace passthru.optional-dependencies with optional-dependencies (#345232) 2024-09-30 15:41:25 +02:00
Robert Schütz
543781083a treewide: replace passthru.optional-dependencies with optional-dependencies 2024-09-29 20:37:23 -07:00
Maximilian Bosch
4606edfdbc
Merge: znapzend: 0.21.0 -> 0.23.2 (#326606) 2024-09-29 19:30:29 +02:00
Anderson Torres
758ee91317 luckybackup: migrate to by-name 2024-09-27 15:36:42 -03:00
Anderson Torres
f6882726d8 luckybackup: libsForQt5.callPackage -> callPackage 2024-09-27 15:05:27 -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
Emily
df69ab8cec wal_e: drop
No release in almost half a decade, no maintainer in Nixpkgs, and
the README describes it as obsolete and recommends alternatives:
<978bc1926c/README.rst (obsolescence-notice)>.
2024-09-22 14:57:38 +01:00
Yt
c1874464dc
conserve: 23.11.0 -> 24.8.0 (#343526) 2024-09-21 13:42:53 -04:00
Peder Bergebakken Sundt
aff940f761 conserve: 23.11.0 -> 24.8.0
Diff: https://github.com/sourcefrog/conserve/compare/v23.11.0...v24.8.0
2024-09-21 17:31:42 +02: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
Peter Hoeg
2d8261dc09 rdiff-backup: add meta.mainProgram 2024-09-17 22:00:57 +02:00
OTABI Tomoya
41c219ae92
treewide: drop useless pytest-runner (#328922) 2024-09-17 10:18:03 +09:00
Nikolay Korotkiy
f4efefb9c9
duplicati: 2.0.7.1 → 2.0.8.1 (#340085) 2024-09-17 02:09:41 +04:00
Sandro Jäckel
0d683ad879
duplicity: drop useless pytest-runner, run pytest explicitly trough pytestCheckHook
Before it was presumable run via python setup.py test which now throws
an error.
2024-09-16 11:30:29 +02:00
wxt
9706ea618a duplicati: move to by-name 2024-09-06 20:48:23 +08:00
github-actions[bot]
bd4b5a5be6
Merge master into staging-next 2024-09-06 12:05:08 +00:00
Bruno Bigras
331aee3eff restic: 0.17.0 -> 0.17.1 2024-09-05 17:34:25 -04:00
github-actions[bot]
b7b46e40c2
Merge master into staging-next 2024-09-03 06:04:33 +00:00
Adam C. Stephens
23ff7c8dff
borgmatic: 1.8.13 -> 1.8.14 (#338324) 2024-09-02 20:42:56 -04:00
x123
9eac00d173 borgmatic: 1.8.13 -> 1.8.14 2024-08-30 07:22:51 +02:00
github-actions[bot]
a2cea72749
Merge staging-next into staging 2024-08-30 00:13:56 +00:00
github-actions[bot]
22c53603c5
Merge master into staging-next 2024-08-30 00:13:29 +00:00
Donovan Glover
05d8b74b04
autorestic: 1.8.2 -> 1.8.3 (#338068) 2024-08-29 18:13:24 +00:00
github-actions[bot]
4a1df24885
Merge staging-next into staging 2024-08-29 06:05:29 +00:00
github-actions[bot]
b430e34392
Merge master into staging-next 2024-08-29 06:05:05 +00:00
Peder Bergebakken Sundt
c477a48699
treewide: replace all pytest-cov patching outside of pythonPackages with pytest-cov-stub (#336777) 2024-08-28 22:17:38 -04:00
R. Ryantm
b0559cac2d autorestic: 1.8.2 -> 1.8.3 2024-08-29 00:29:18 +00:00
Sandro Jäckel
ca355f14c8
treewide: replace all pytest-cov patching outside of pythonPackages with pytest-cov-stub 2024-08-27 20:47:13 +02:00