summary refs log tree commit diff
path: root/release/checks/pkg-tests.nix
blob: f51ba42f25edcc861feabe14d66160d1700840a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# SPDX-License-Identifier: MIT
# SPDX-FileCopyrightText: 2023 Alyssa Ross <hi@alyssa.is>

import ../../lib/call-package.nix (
{ callSpectrumPackage, lseek, start-vm, lib }:

{
  recurseForDerivations = true;

  lseek = lib.recurseIntoAttrs lseek.tests;

  start-vm = lib.recurseIntoAttrs start-vm.tests;

  run-spectrum-vm = lib.recurseIntoAttrs
    (callSpectrumPackage ../../scripts/run-spectrum-vm.nix {}).tests;
}) (_: {})