mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-19 12:32:11 +03:00
22 lines
324 B
Nix
22 lines
324 B
Nix
{
|
|
lib ? pkgs.lib,
|
|
pkgs ? import <nixpkgs> {},
|
|
dream2nix ? import ./src { inherit pkgs; },
|
|
}:
|
|
|
|
let
|
|
l = pkgs.lib // builtins;
|
|
|
|
buildProjectsTests = import ./projects.nix {
|
|
inherit lib pkgs dream2nix;
|
|
};
|
|
|
|
otherTests = import ./other {
|
|
inherit lib pkgs dream2nix;
|
|
};
|
|
|
|
in
|
|
buildProjectsTests
|
|
//
|
|
otherTests
|