extra-nixpkgs/default.nix
Rongsong Shen f7244c7e45 unity
2025-11-05 11:07:14 +08:00

28 lines
729 B
Nix

{pkgs,...}:
with pkgs;
let
cedro = callPackage ./pkgs/c/cedro/package.nix {};
capnpc = callPackage ./pkgs/c/capnpc/package.nix {};
xbuild = callPackage ./pkgs/x/xbuild/package.nix {
pkgs = pkgs;
cedro = cedro;
capnpc = capnpc;
};
zlog_with_pkgconf = callPackage ./pkgs/z/zlog/package.nix {
with_pkgconf = true;
};
tinylog = callPackage ./pkgs/t/tinylog/package.nix {};
unity_test_with_color = callPackage ./pkgs/u/unity-test/package.nix {};
uem = callPackage ./pkgs/u/uem/package.nix {
pkgs = pkgs;
};
in
{
xbuild = xbuild;
capnpc = capnpc;
cedro = cedro;
zlog_with_pkgconf = zlog_with_pkgconf;
tinylog = tinylog;
unity_test_with_color = unity_test_with_color;
uem = uem;
}