2024-04-12 15:37:11 +02:00
|
|
|
{ pkgs }:
|
2024-04-11 17:15:11 +02:00
|
|
|
|
2024-04-12 15:22:07 +02:00
|
|
|
let
|
2024-04-12 17:27:17 +02:00
|
|
|
sources = import ../_sources/generated.nix { inherit (pkgs) fetchgit fetchurl fetchFromGitHub dockerTools; };
|
|
|
|
packages = [
|
|
|
|
(import ./go { inherit pkgs sources; })
|
|
|
|
(import ./node { inherit pkgs sources; })
|
2024-04-12 15:22:07 +02:00
|
|
|
];
|
|
|
|
in
|
2024-04-12 17:27:17 +02:00
|
|
|
pkgs.lib.foldl (a: b: a // b) {} packages
|