nixos/tests: stdenv.lib -> lib
These must have been reintroduced by mistake after the deprecation.
This commit is contained in:
parent
8e7ed326b8
commit
5b4f8afae4
2 changed files with 2 additions and 2 deletions
|
@ -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 ];
|
||||
};
|
||||
|
||||
|
|
|
@ -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 ];
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue