nixpkgs/pkgs/pkgs-lib/tests/default.nix

8 lines
269 B
Nix
Raw Permalink Normal View History

2020-03-26 01:54:23 +00:00
# Call nix-build on this file to run all tests in this directory
{ pkgs ? import ../../.. {} }:
let
2020-03-26 01:56:07 +00:00
formats = import ./formats.nix { inherit pkgs; };
2020-03-26 01:54:23 +00:00
in pkgs.linkFarm "nixpkgs-pkgs-lib-tests" [
2020-03-26 01:56:07 +00:00
{ name = "formats"; path = import ./formats.nix { inherit pkgs; }; }
2020-03-26 01:54:23 +00:00
]