1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00

sway: inherit tests from unwrapped package

This commit is contained in:
Patrick Hilhorst 2021-11-01 15:50:27 +01:00
parent fa62029dc2
commit 595ecd2ceb
No known key found for this signature in database
GPG key ID: 3BB083304DADC0FF

View file

@ -52,7 +52,10 @@ in symlinkJoin {
${optionalString (extraOptions != []) "${concatMapStrings (x: " --add-flags " + x) extraOptions}"}
'';
passthru.providedSessions = [ "sway" ];
passthru = {
inherit (sway.passthru) tests;
providedSessions = [ "sway" ];
};
inherit (sway) meta;
}