binary-cache/tests/default.nix

11 lines
301 B
Nix
Raw Normal View History

2024-07-18 22:25:44 +02:00
{
sources ? import ../npins,
nixpkgs ? sources.nixpkgs,
pkgs ? import nixpkgs { overlays = [ (import ../pkgs/overlay.nix) ]; },
}:
{
2024-07-19 10:51:57 +02:00
multi-cache = pkgs.callPackage ./multi-cache.nix { };
ingest = pkgs.callPackage ./ingest.nix { };
2024-07-19 10:51:57 +02:00
substitution = pkgs.callPackage ./substitution.nix { };
}