2024-01-02 09:02:41 +00:00
|
|
|
{
|
|
|
|
description = "A testing library for nix";
|
|
|
|
|
2024-01-02 11:13:47 +00:00
|
|
|
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];
|
|
|
|
};
|
2024-01-02 09:02:41 +00:00
|
|
|
}
|