nixosTests.tomcat: add lib to imports to fix eval

Without the change eval fails as:

    $ nix build --no-link -f. nixosTests.tomcat

        error: undefined variable 'lib'
This commit is contained in:
Sergei Trofimovich 2023-12-28 06:49:32 +00:00
parent 55b8e90b5f
commit 15a672bf1f

View File

@ -1,4 +1,4 @@
import ./make-test-python.nix ({ pkgs, ... }: {
import ./make-test-python.nix ({ lib, pkgs, ... }: {
name = "tomcat";
meta.maintainers = [ lib.maintainers.anthonyroussel ];