571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
26 lines
869 B
Diff
26 lines
869 B
Diff
diff --git a/loxodo.py b/loxodo.py
|
|
index 68ad4c8..e96bc1a 100755
|
|
--- a/loxodo.py
|
|
+++ b/loxodo.py
|
|
@@ -41,7 +41,7 @@ if len(sys.argv) > 1:
|
|
# In all other cases, use the "wx" frontend.
|
|
try:
|
|
import wx
|
|
- assert(wx.__version__.startswith('4.0.'))
|
|
+ assert(wx.__version__.startswith('4.'))
|
|
except AssertionError as e:
|
|
print('Found incompatible wxPython, the wxWidgets Python bindings: %s' % wx.__version__, file=sys.stderr)
|
|
print('Falling back to cmdline frontend.', file=sys.stderr)
|
|
diff --git a/src/frontends/wx/loxodo.py b/src/frontends/wx/loxodo.py
|
|
index bc3f509..e02c4bf 100644
|
|
--- a/src/frontends/wx/loxodo.py
|
|
+++ b/src/frontends/wx/loxodo.py
|
|
@@ -25,6 +25,7 @@ from .loadframe import LoadFrame
|
|
|
|
|
|
def main():
|
|
+ wx.SizerFlags.DisableConsistencyChecks()
|
|
app = wx.App(False)
|
|
setup_wx_locale()
|
|
mainframe = LoadFrame(None, -1, "")
|