Commit Graph

252 Commits

Author SHA1 Message Date
Philip Taron
7791730675
flake-checker: 0.2.0 -> 0.2.1 (#362074) 2024-12-05 20:36:51 -08:00
David Chocholatý
9751944f85
flirt: init at 0.2 2024-12-05 20:54:01 +01:00
R. Ryantm
83dad7d43c flake-checker: 0.2.0 -> 0.2.1 2024-12-05 13:03:17 +00:00
nixpkgs-merge-bot[bot]
039ae5db91
flottbot: 0.13.1 -> 0.14.0 (#360712) 2024-12-04 14:57:47 +00:00
R. Ryantm
453e4c611a flottbot: 0.13.1 -> 0.14.0 2024-12-01 08:56:44 +00:00
R. Ryantm
d1bed296f1 flix: 0.52.0 -> 0.54.0 2024-12-01 00:46:30 +00:00
tomberek
4703b8d2c7
pkgs.dockertools.buildLayeredImage: customisable layering strategy (#122608) 2024-11-29 22:39:21 -05:00
Adrian Gierakowski
ba5a5fac7b flattenReferencesGraph: fix use of lib.fileset
mentioning non-existent file caused a ci failure: https://github.com/NixOS/nixpkgs/actions/runs/12091053669/job/33718955875?pr=122608
2024-11-29 22:18:21 +00:00
Rick van Schijndel
bc604cb912
flatpak: set meta.mainProgram (#358995) 2024-11-29 23:06:09 +01:00
Adrian Gierakowski
9ae0f77577 flattenReferencesGraph: use lib.fileset instead of gitignoreSource 2024-11-29 22:02:06 +00:00
Adrian Gierakowski
88bdfb1565 flatten_references_graph: fix typo egdes => edges 2024-11-29 21:37:38 +00:00
Anderson Torres
e7387f290c treewide: remove AndersonTorres from maintainers 2024-11-28 21:12:42 -03:00
Nikolay Korotkiy
554298b726
flashmq: 1.17.3 → 1.18.2 (#358591) 2024-11-28 00:51:26 +04:00
Nikolay Korotkiy
347e857eac
flashmq: 1.17.3 → 1.18.2 2024-11-27 03:06:08 +04:00
Robert Schütz
e1c35275ac
flare-signal: 0.15.2 -> 0.15.6 (#359047)
Diff: https://gitlab.com/schmiddi-on-mobile/flare/-/compare/0.15.2...0.15.6

Changelog: https://gitlab.com/schmiddi-on-mobile/flare/-/blob/0.15.6/CHANGELOG.md
2024-11-25 23:24:22 +01:00
Jordan Williams
696ff47378
flatpak: set meta.mainProgram 2024-11-25 08:00:16 -06:00
Nick Cao
3c225dac22
flyctl: 0.3.37 -> 0.3.40 (#358835) 2024-11-25 08:18:02 -05:00
Sandro
dfe5c76f37
flclash: 0.8.66 -> 0.8.68 (#354587) 2024-11-25 00:00:45 +01:00
R. Ryantm
81ff7b56ac flyctl: 0.3.37 -> 0.3.40 2024-11-24 22:27:01 +00:00
OTABI Tomoya
9dfe674927
flashgbx: 4.2 -> 4.3 (#355787) 2024-11-24 00:59:26 +09:00
techknowlogick
74989eae3c flyctl: 0.3.29 -> 0.3.37
Diff: https://github.com/superfly/flyctl/compare/v0.3.29...v0.3.37
2024-11-18 15:45:08 -05:00
aucub
40b196272f flclash: 0.8.67 -> 0.8.68 2024-11-18 01:31:16 +08:00
Masum Reza
e3363e9522
flyway: 9.22.3 -> 10.20.1 (#346911) 2024-11-15 22:06:35 +05:30
Noah Markert
cfba4c287a
flyway: fix version check
removed flag jarDirs, because it is not used
2024-11-14 20:28:48 +05:30
Noah Markert
63685d8a0a
flyway: 9.22.3 -> 10.20.1 2024-11-14 20:28:47 +05:30
R. Ryantm
095978677b flashgbx: 4.2 -> 4.3 2024-11-14 00:27:51 +00:00
Felix Singer
a83c3c5546 flashprog: 1.2 -> 1.3
Release notes: https://flashprog.org/wiki/Flashprog/v1.3

Signed-off-by: Felix Singer <felixsinger@posteo.net>
2024-11-13 18:02:48 +01:00
aucub
18fa0aba0b flclash: 0.8.66 -> 0.8.67 2024-11-12 18:13:38 +00:00
Adrian Gierakowski
f621753b76 flatten_references_graph: remove unused fixture and all real /nix/store paths from tests 2024-11-12 08:41:23 +00:00
R. Ryantm
1d259ab757 flat-remix-gnome: 20240721 -> 20240922 2024-11-10 02:07:34 +01:00
Adrian Gierakowski
5b4a8db4d9 build-support/docker: customisable layering strategy
Allow customisation of the algorithm used to convert nix references
graph (created from docker image contents) to docker layers.

A collection of building blocks (python functions) is provided, which
use can assembled into a processing pipeline by specifying a list of
operations (and their initial arguments) via a nix list.

Nix references graph if first converted into a python igraph.Graph
object (with each vertex representing a nix path), which is then fed
into the user defined pipeline. Each stage in the pipeline represents a
function call, with initial arguments specified by the user in nix, and
the last argument being the result of the previous stage in the pipeline
(or the initial Graph object). Each step of the pipeline is expected to
produce a data structure consisting of arbitrarily  nested lists/dicts
with Graph objects (representing docker layers) at it's leafs. The
result of the last stage in the pipeline is recursively flattened (with
each dict converted into list of values), until a flat list of Graphs
remains. This is then output as a json array of arrays (each Graph
converted into an array of paths).

This functionality is made available via new `layeringPipeline` argument
to the `streamLayeredImage`/`buildLayeredImage` functions. The default
value of the argument has been chosen to to preserve current layering
behaviour.

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2024-11-09 16:21:48 +00:00
Nick Cao
011f48fb22
fluent-bit: 3.1.9 -> 3.1.10 (#354664) 2024-11-09 10:35:45 -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
R. Ryantm
cf772c1b56 fluent-bit: 3.1.9 -> 3.1.10 2024-11-09 02:03:04 +00:00
aucub
23be01302a flclash: libclash add meta 2024-11-09 04:35:59 +08:00
Nikolay Korotkiy
c89cc9e33f
flashmq: 1.17.2 → 1.17.3 2024-11-08 18:49:31 +04:00
Aleksana
93c031a666
florist: init at 24.2 (#350193) 2024-11-05 12:07:23 +08:00
Lutz Berger
bdef0396f5 florist: init at 24.2 2024-11-04 13:16:02 +01:00
R. Ryantm
5f51b9d6ac flawz: 0.2.2 -> 0.3.0 2024-11-04 02:36:18 +00:00
R. Ryantm
e9a7eb4bcc flashmq: 1.17.1 -> 1.17.2 2024-11-03 05:13:57 +00:00
Aleksana
8012498109
flexget: 3.11.48 -> 3.11.49 (#350509) 2024-10-29 18:19:37 +08:00
Rick van Schijndel
7387d4446b
flawz: fix cross-compilation (#351144) 2024-10-28 21:22:44 +01:00
Aleksana
8dccb0def3
flent: fix build (#351169) 2024-10-28 20:36:23 +08:00
Alyssa Ross
c6e6d1edd6 flatpak: enable debug info 2024-10-28 08:34:29 +01:00
Aleksana
758d99d4cc
flclash: init at 0.8.66 (#351318) 2024-10-28 11:38:45 +08:00
wxt
254ddffa98
flent: 2.1.1 -> 2.2.0 2024-10-27 22:32:41 +08:00
wxt
8a432a45a3
flent,http-getter: nixfmt 2024-10-27 22:32:39 +08:00
wxt
1984e1cab9
flent,http-getter: move to by-name 2024-10-27 22:32:39 +08:00
dr56ekgbb
ef08fafbea flclash: init at 0.8.66 2024-10-26 18:34:19 +08:00
R. Ryantm
145fd69e94 flarectl: 0.105.0 -> 0.108.0 2024-10-26 08:20:13 +00:00