tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
treewide: fix broken `meta` attributes
Naïm Favier
3 years ago
2c83122c
94747ae8
+5
-5
4 changed files
expand all
collapse all
unified
split
pkgs
applications
misc
keepass-plugins
otpkeyprov
default.nix
games
quake3
quake3e
default.nix
os-specific
linux
kernel
linux-rpi.nix
tools
security
onlykey-agent
default.nix
+1
-1
pkgs/applications/misc/keepass-plugins/otpkeyprov/default.nix
···
17
17
homepage = "https://keepass.info/plugins.html#otpkeyprov";
18
18
platforms = with lib.platforms; linux;
19
19
license = lib.licenses.gpl2;
20
20
-
maintainers = [ lib.maintainers.ente ];
20
20
+
maintainers = [ lib.maintainers.Enteee ];
21
21
};
22
22
23
23
pluginFilename = "OtpKeyProv.plgx";
+1
-1
pkgs/games/quake3/quake3e/default.nix
···
47
47
license = licenses.gpl2;
48
48
platforms = platforms.linux;
49
49
maintainers = with maintainers; [ pmiddend ];
50
50
-
badPlatforms = [ platforms.aarch64 ];
50
50
+
badPlatforms = platforms.aarch64;
51
51
# never built on aarch64-linux since first introduction in nixpkgs
52
52
broken = stdenv.isLinux && stdenv.isAarch64;
53
53
};
+2
-2
pkgs/os-specific/linux/kernel/linux-rpi.nix
···
41
41
'';
42
42
43
43
extraMeta = if (rpiVersion < 3) then {
44
44
-
platforms = with lib.platforms; [ arm ];
44
44
+
platforms = with lib.platforms; arm;
45
45
hydraPlatforms = [];
46
46
} else {
47
47
-
platforms = with lib.platforms; [ arm aarch64 ];
47
47
+
platforms = with lib.platforms; arm ++ aarch64;
48
48
hydraPlatforms = [ "aarch64-linux" ];
49
49
};
50
50
} // (args.argsOverride or {}))) (oldAttrs: {
+1
-1
pkgs/tools/security/onlykey-agent/default.nix
···
38
38
meta = oa.meta // {
39
39
description = "Using OnlyKey as hardware SSH and GPG agent";
40
40
homepage = "https://github.com/trustcrypto/onlykey-agent/tree/ledger";
41
41
-
maintainers = with maintainers; [ kalbasit ];
41
41
+
maintainers = with lib.maintainers; [ kalbasit ];
42
42
};
43
43
});
44
44
in