17 lines
304 B
Nix
17 lines
304 B
Nix
{
|
|
description = "A testing library for nix";
|
|
|
|
outputs = {
|
|
self,
|
|
nixpkgs,
|
|
}: let
|
|
system = "x86_64-linux";
|
|
pkgs = import nixpkgs {inherit system;};
|
|
tix = import ./testing/. {inherit pkgs;};
|
|
in
|
|
tix
|
|
// {
|
|
packages.x86_64-linux.test = tix.run [./mytest.nix];
|
|
};
|
|
}
|