rofimoji: Allow usage on Darwin platforms
Support was introduced in Rofimoji 6.6.0 See: https://github.com/fdw/rofimoji/pull/224 And: https://github.com/fdw/rofimoji/releases/tag/6.6.0
This commit is contained in:
committed by
Weijia Wang
parent
c4b6a0009f
commit
f58abdd724
@@ -3,9 +3,10 @@
|
||||
python3Packages,
|
||||
fetchFromGitHub,
|
||||
installShellFiles,
|
||||
stdenv,
|
||||
|
||||
waylandSupport ? true,
|
||||
x11Support ? true,
|
||||
waylandSupport ? stdenv.isLinux,
|
||||
x11Support ? stdenv.isLinux,
|
||||
|
||||
wl-clipboard,
|
||||
wtype,
|
||||
@@ -60,7 +61,7 @@ python3Packages.buildPythonApplication rec {
|
||||
homepage = "https://github.com/fdw/rofimoji";
|
||||
changelog = "https://github.com/fdw/rofimoji/blob/${src.rev}/CHANGELOG.md";
|
||||
license = lib.licenses.mit;
|
||||
platforms = lib.platforms.linux;
|
||||
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
||||
maintainers = with lib.maintainers; [ justinlovinger ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user