about summary refs log tree commit diff stats
path: root/pkgs/default.nix
blob: dfef2b605f22add747f9f4351ea7a50121896426 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  pkgs,
  nixLib,
}: let
  inherit (pkgs) lib;

  callPackage = lib.callPackageWith (nixLib.warnMerge pkgs myPkgs "the ./pkgs/by-name set");

  myPkgs = nixLib.mkByName {
    baseDirectory = ./by-name;
    fileName = "package.nix";
    finalizeFunction = name: value: callPackage value {};
  };
in
  # TODO: Filter the sources of every package in the shards <2024-05-25>
  myPkgs