forked from mirrors/nixpkgs
Merge #144897: treewide: eliminate stdenv.lib usage
This commit is contained in:
commit
10d6afbd2d
|
@ -6,7 +6,7 @@ import ./make-test-python.nix ({ pkgs, ... }:
|
|||
};
|
||||
in {
|
||||
name = "seafile";
|
||||
meta = with pkgs.stdenv.lib.maintainers; {
|
||||
meta = with pkgs.lib.maintainers; {
|
||||
maintainers = [ kampfschlaefer schmittlauch ];
|
||||
};
|
||||
|
||||
|
|
|
@ -42,7 +42,7 @@ in
|
|||
# Check that specialisations create corresponding boot entries.
|
||||
specialisation = makeTest {
|
||||
name = "systemd-boot-specialisation";
|
||||
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ lukegb ];
|
||||
meta.maintainers = with pkgs.lib.maintainers; [ lukegb ];
|
||||
|
||||
machine = { pkgs, lib, ... }: {
|
||||
imports = [ common ];
|
||||
|
|
Loading…
Reference in a new issue