mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
7 lines
269 B
Nix
7 lines
269 B
Nix
# Call nix-build on this file to run all tests in this directory
|
|
{ pkgs ? import ../../.. {} }:
|
|
let
|
|
formats = import ./formats.nix { inherit pkgs; };
|
|
in pkgs.linkFarm "nixpkgs-pkgs-lib-tests" [
|
|
{ name = "formats"; path = import ./formats.nix { inherit pkgs; }; }
|
|
]
|