tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Merge #144897: treewide: eliminate stdenv.lib usage
Vladimír Čunát
4 years ago
10d6afbd
ecb6c351
+2
-2
2 changed files
expand all
collapse all
unified
split
nixos
tests
seafile.nix
systemd-boot.nix
+1
-1
nixos/tests/seafile.nix
···
6
6
};
7
7
in {
8
8
name = "seafile";
9
9
-
meta = with pkgs.stdenv.lib.maintainers; {
9
9
+
meta = with pkgs.lib.maintainers; {
10
10
maintainers = [ kampfschlaefer schmittlauch ];
11
11
};
12
12
+1
-1
nixos/tests/systemd-boot.nix
···
42
42
# Check that specialisations create corresponding boot entries.
43
43
specialisation = makeTest {
44
44
name = "systemd-boot-specialisation";
45
45
-
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ lukegb ];
45
45
+
meta.maintainers = with pkgs.lib.maintainers; [ lukegb ];
46
46
47
47
machine = { pkgs, lib, ... }: {
48
48
imports = [ common ];