mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-15 10:09:45 +00:00
7 lines
125 B
Nix
7 lines
125 B
Nix
{ lib }:
|
|
f: opts:
|
|
let
|
|
derivations = (lib.attrsets.mapAttrsToList f opts);
|
|
in
|
|
lib.lists.fold (a: b: a // b) { } derivations
|