Commit Graph

900 Commits

Author SHA1 Message Date
Zack Grannan
2afed01c61
duply: 2.3 -> 2.3.1 (#127635)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-06-21 12:29:41 +02:00
Julien Moutinho
0af0d5c5c3 mastodon-archive: init at 1.3.1 2021-06-16 20:24:45 +02:00
Luke Granger-Brown
61d88f3d3e
Merge pull request #125746 from r-ryantm/auto-update/bacula
bacula: 11.0.3 -> 11.0.5
2021-06-06 17:14:53 +01:00
R. RyanTM
cab9d7a1ae bacula: 11.0.3 -> 11.0.5 2021-06-05 00:28:35 +00:00
imlonghao
f9dbd6c68b borgmatic: 1.5.12 -> 1.5.13 2021-06-04 17:25:50 +00:00
Mario Rodas
d8ee8e105c
Merge pull request #125163 from marsam/update-wal-g
wal-g: 0.2.21 -> 1.0
2021-06-02 07:33:09 -05:00
R. RyanTM
d386ff76a6 bupstash: 0.9.0 -> 0.9.1 2021-06-01 06:25:52 +00:00
Mario Rodas
761c513f79 wal-g: 0.2.21 -> 1.0
https://github.com/wal-g/wal-g/releases/tag/v1.0
2021-06-01 04:20:00 +00:00
Sandro
1b9699931c
Merge pull request #123644 from michaeladler/update-sanoid 2021-05-28 20:36:26 +02:00
Domen Kožar
b72c2d3806
duplicati: 2.0.5.1 -> 2.0.6.1, fix nixos module 2021-05-28 10:33:53 +02:00
R. RyanTM
346f68bf71 bacula: 11.0.2 -> 11.0.3 2021-05-26 23:39:16 -07:00
Michael Adler
5f6f35497d sanoid: 2.0.3 -> 2.1.0
Signed-off-by: Michael Adler <therisen06@gmail.com>
2021-05-19 11:25:38 +02:00
Jonathan Ringer
f7a112f6c4
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
  pkgs/applications/graphics/emulsion/default.nix
  pkgs/development/tools/misc/texlab/default.nix
  pkgs/development/tools/rust/bindgen/default.nix
  pkgs/development/tools/rust/cargo-udeps/default.nix
  pkgs/misc/emulators/ruffle/default.nix
  pkgs/tools/misc/code-minimap/default.nix
2021-05-18 08:57:16 -07:00
R. RyanTM
a900462807 dar: 2.7.0 -> 2.7.1 2021-05-17 15:58:49 -07:00
Stéphan Kochen
5a73259a3b monolith: fix darwin build 2021-05-17 22:19:42 +02:00
Jonathan Ringer
d8e62d8e41
Merge remote-tracking branch 'origin/master' into staging-next
Fix cargo-flash build
2021-05-16 18:27:14 -07:00
J. Neto
523572c9f3 s3ql: 3.3.2 -> 3.7.2 2021-05-16 14:22:10 -07:00
github-actions[bot]
b057978bb2
Merge staging-next into staging 2021-05-12 18:32:29 +00:00
github-actions[bot]
f214722172
Merge master into staging-next 2021-05-12 18:32:26 +00:00
Babbaj
7c609936c5
gb-backup: 2021-03-06 -> 2021-04-07 2021-05-11 15:08:22 -04:00
Jan Tojnar
594a885912
Merge branch 'staging-next' into staging 2021-05-10 09:45:47 +02:00
Vladimír Čunát
5663b2b2d3
Merge branch 'master' into staging-next
(a trivial conflict in transmission)
2021-05-09 09:31:55 +02:00
R. RyanTM
a8926057f0 bacula: 11.0.1 -> 11.0.2 2021-05-08 18:00:19 -07:00
Daniël de Kok
85f96822a0 treewide: fix cargoSha256/cargoHash
Rust 1.50.0 incorporated a Cargo change (rust-lang/cargo#8937) in
which cargo vendor erroneously changed permissions of vendored
crates. This was fixed in Rust
1.51.0 (rust-lang/cargo#9131). Unfortunately, this means that all
cargoSha256/cargoHashes produced during the Rust 1.50.0 cycle are
potentially broken.

This change updates cargoSha256/cargoHash tree-wide.

Fixes #121994.
2021-05-08 00:36:37 -07:00
John Ericson
17305d2df0
Merge pull request #111487 from Ericson2314/llvm-outputs-and-cross-compile-tools
llvmPackages: Clean up outputs
2021-04-30 11:28:08 -04:00
Andrew Childs
7869d16545 llvmPackages: Multuple outputs for everythting
Also begin to start work on cross compilation, though that will have to
be finished later.

The patches are based on the first version of
https://reviews.llvm.org/D99484. It's very annoying to do the
back-porting but the review has uncovered nothing super major so I'm
fine sticking with what I've got.

Beyond making the outputs work, I also strove to re-sync the packages,
as they have been drifting pointlessly apart for some time.

----

Other misc notes, highly incomplete

- lvm-config-native and llvm-config are put in `dev` because they are
  tools just for build time.

- Clang no longer has an lld dep. That was introduced in
  db29857eb391ed002046090851a44c452b80bdbd, but if clang needs help
  finding lld when it is used we should just pass it flags / put in the
  resource dir. Providing it at build time increases critical path
  length for no good reason.

----

A note on `nativeCC`:

`stdenv` takes tools from the previous stage, so:

1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.stdenv.cc`: `(?0, ?1, x)`

while:

1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.targetPackages`: `(x, x, ?2)`
3. `pkgsBuildBuild.targetPackages.stdenv.cc`: `(?1, x, x)`
2021-04-30 05:41:00 +00:00
Mitch Fossen
77dc94f4d0 kopia: 0.7.3 -> 0.8.4 2021-04-29 18:47:27 -05:00
R. RyanTM
07edccbb6c dar: 2.6.14 -> 2.7.0 2021-04-29 16:23:53 -04:00
R. RyanTM
cc9ffa3520 bupstash: 0.8.0 -> 0.9.0 2021-04-22 06:54:59 +00:00
Cole Helbling
b9e4b02b38 zrepl: 0.3.1 -> 0.4.0
https://github.com/zrepl/zrepl/compare/v0.3.1...v0.4.0

Most notably (IMO), a new status UI!
2021-04-18 13:39:57 -07:00
github-actions[bot]
496c7d3e9d
Merge master into staging-next 2021-04-09 06:05:54 +00:00
Mario Rodas
0abc38a934 wal-g: 0.2.19 -> 0.2.21 2021-04-09 04:20:00 +00:00
Sandro
6fc2b7ecc2
Merge pull request #116570 from dnr/gphotos-sync 2021-04-09 02:55:52 +02:00
Jan Tojnar
c04a14edd6 Merge branch 'master' into staging-next 2021-04-06 16:01:14 +02:00
Sandro
7c932296e0
Merge pull request #116335 from SuperSandro2000/move-aliases.nix 2021-04-05 04:07:15 +02:00
github-actions[bot]
8277f3982e
Merge master into staging-next 2021-04-04 18:13:55 +00:00
Sandro Jäckel
3453b89f4b
lzma: deprecate alias 2021-04-04 19:49:52 +02:00
Gabriel Ebner
d207656690 duplicity: reduce closure size 2021-04-04 14:49:39 +02:00
Sandro Jäckel
62733b37b4
mysql: deprecate alias 2021-04-04 03:18:57 +02:00
github-actions[bot]
470f04796a
Merge master into staging-next 2021-04-03 06:05:27 +00:00
Sandro
ee8c25055b
Merge pull request #117737 from babbaj/master 2021-04-03 02:28:44 +02:00
github-actions[bot]
74200a7126
Merge master into staging-next 2021-04-03 00:14:57 +00:00
Gabriel Ebner
757a09c437 duplicity: add setuptools_scm dependency 2021-04-02 19:57:46 +02:00
Babbaj
af57dd5747
gb-backup: init at 2021-03-06 2021-04-02 13:30:52 -04:00
rnhmjoj
61b7cab481
treewide: use perl.withPackages when possible
Since 03eaa48 added perl.withPackages, there is a canonical way to
create a perl interpreter from a list of libraries, for use in script
shebangs or generic build inputs. This method is declarative (what we
are doing is clear), produces short shebangs[1] and needs not to wrap
existing scripts.

Unfortunately there are a few exceptions that I've found:

  1. Scripts that are calling perl with the -T switch. This makes perl
  ignore PERL5LIB, which is what perl.withPackages is using to inform
  the interpreter of the library paths.

  2. Perl packages that depends on libraries in their own path. This
  is not possible because perl.withPackages works at build time. The
  workaround is to add `-I $out/${perl.libPrefix}` to the shebang.

In all other cases I propose to switch to perl.withPackages.

[1]: https://lwn.net/Articles/779997/
2021-03-31 21:35:37 +02:00
github-actions[bot]
01b3d1558f
Merge staging-next into staging 2021-03-30 18:15:09 +00:00
Sandro
e570d93519
borgbackup: rename directory to borgbackup (#118073) 2021-03-30 16:48:27 +02:00
github-actions[bot]
d466353dd5
Merge staging-next into staging 2021-03-30 12:06:28 +00:00
Martin Weinelt
ff166608d2
Merge pull request #117945 from SuperSandro2000/doc-output 2021-03-30 12:10:37 +02:00
Sandro Jäckel
782f17ede8
borg: split doc into separate output 2021-03-29 17:27:24 +02:00