nixos/tests: stdenv.lib -> lib

These must have been reintroduced by mistake after the deprecation.
This commit is contained in:
rnhmjoj 2021-09-22 08:33:38 +02:00
parent 8e7ed326b8
commit 5b4f8afae4
No known key found for this signature in database
GPG key ID: BFBAF4C975F76450
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
import ./make-test-python.nix ({ pkgs, ...} : {
name = "postfixadmin";
meta = with pkgs.stdenv.lib.maintainers; {
meta = with pkgs.lib.maintainers; {
maintainers = [ globin ];
};

View file

@ -6,7 +6,7 @@
with import ../lib/testing-python.nix { inherit system pkgs; };
makeTest {
name = "tigervnc";
meta = with pkgs.stdenv.lib.maintainers; {
meta = with pkgs.lib.maintainers; {
maintainers = [ lheckemann ];
};