Skip to content

Commit b4806bf

Browse files
committedMar 22, 2025
weylus: move to by-name
1 parent 7f40125 commit b4806bf

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed
 

‎nixos/modules/programs/weylus.nix

+4-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,10 @@ in
2828
These users can synthesize input events system-wide, even when another user is logged in - untrusted users should not be added.
2929
'';
3030
};
31-
32-
package = lib.mkPackageOption pkgs "weylus" { };
31+
package = lib.mkOption {
32+
type = package;
33+
default = pkgs.callPackage ../../pkgs/by-name/we/weylus/package.nix;
34+
};
3335
};
3436
config = lib.mkIf cfg.enable {
3537
networking.firewall = lib.mkIf cfg.openFirewall {

‎pkgs/top-level/all-packages.nix

-4
Original file line numberDiff line numberDiff line change
@@ -996,10 +996,6 @@ with pkgs;
996996

997997
fontbakery = with python3Packages; toPythonApplication fontbakery;
998998

999-
weylus = callPackage ../applications/graphics/weylus {
1000-
inherit (darwin.apple_sdk.frameworks) ApplicationServices Carbon Cocoa VideoToolbox;
1001-
};
1002-
1003999
inherit (callPackage ../development/tools/genealogos { }) genealogos-cli genealogos-api;
10041000

10051001
# This is to workaround gfal2-python broken against Python 3.12 or later.

0 commit comments

Comments
 (0)
Failed to load comments.