We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 16cdd6b + 2ba55c4 commit fcec87cCopy full SHA for fcec87c
pkgs/applications/misc/plover/default.nix
@@ -1,5 +1,6 @@
1
{
2
lib,
3
+ config,
4
fetchFromGitHub,
5
python3Packages,
6
wmctrl,
@@ -8,8 +9,6 @@
8
9
}:
10
11
- stable = throw "plover.stable was removed because it used Python 2. Use plover.dev instead."; # added 2022-06-05
12
-
13
dev =
14
with python3Packages;
15
mkDerivationWith buildPythonPackage rec {
@@ -58,3 +57,6 @@
58
57
'';
59
};
60
}
+// lib.optionalAttrs config.allowAliases {
61
+ stable = throw "plover.stable was removed because it used Python 2. Use plover.dev instead."; # added 2022-06-05
62
+}
0 commit comments