Skip to content

Commit e8e4986

Browse files
Lqp1Gigahawk
authored andcommitted
rofimoji: Allow usage on Darwin platforms
Support was introduced in Rofimoji 6.6.0 See: fdw/rofimoji#224 And: https://github.com/fdw/rofimoji/releases/tag/6.6.0
1 parent 572b914 commit e8e4986

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

pkgs/by-name/ro/rofimoji/package.nix

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
python3Packages,
44
fetchFromGitHub,
55
installShellFiles,
6+
stdenv,
67

7-
waylandSupport ? true,
8-
x11Support ? true,
8+
waylandSupport ? stdenv.isLinux,
9+
x11Support ? stdenv.isLinux,
910

1011
wl-clipboard,
1112
wtype,
@@ -60,7 +61,7 @@ python3Packages.buildPythonApplication rec {
6061
homepage = "https://github.com/fdw/rofimoji";
6162
changelog = "https://github.com/fdw/rofimoji/blob/${src.rev}/CHANGELOG.md";
6263
license = lib.licenses.mit;
63-
platforms = lib.platforms.linux;
64+
platforms = lib.platforms.linux ++ lib.platforms.darwin;
6465
maintainers = with lib.maintainers; [ justinlovinger ];
6566
};
6667
}

0 commit comments

Comments
 (0)