Skip to content

Commit c10e485

Browse files
committed
Do not filter out nix-on-droid configurations based on system
1 parent 67f5a4f commit c10e485

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

lib/default.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,9 @@ let
697697
)
698698
))
699699
# add nix-on-droid closures to checks
700-
(withPrefix "droid-" (lib.mapAttrs (_: x: x) ((inputs.self.nixOnDroidConfigurations or { }))))
700+
(withPrefix "droid-" (
701+
lib.mapAttrs (_: x: x.activationPackage) ((inputs.self.nixOnDroidConfigurations or { }))
702+
))
701703
# load checks from the /checks folder. Those take precedence over the others.
702704
(filterPlatforms system (
703705
optionalPathAttrs (src + "/checks") (

0 commit comments

Comments
 (0)