11 lines
239 B
Nix
11 lines
239 B
Nix
{
|
|
description = "A testing library for nix";
|
|
|
|
outputs = { self, nixpkgs }:
|
|
let
|
|
system = "x86_64-linux";
|
|
pkgs = import nixpkgs { inherit system; };
|
|
testing = import ./testing/. { inherit pkgs; };
|
|
in testing;
|
|
}
|