12 lines
242 B
Nix
12 lines
242 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;
|
||
|
}
|