-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: flake lock update and workarounds
- Loading branch information
1 parent
e8c483c
commit ee6ca7b
Showing
9 changed files
with
95 additions
and
49 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,8 @@ in | |
mgba | ||
mupen64plus | ||
nestopia | ||
pcsx2 | ||
# FIX: broken package | ||
# pcsx2 | ||
pcsxr | ||
rpcs3 | ||
snes9x | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
_: _final: prev: { | ||
mysql-workbench = prev.mysql-workbench.overrideAttrs (old: { | ||
patches = old.patches ++ [ ./fix-xml2.patch ]; | ||
|
||
# GCC 13: error: 'int64_t' in namespace 'std' does not name a type | ||
# when updating the version make sure this is still needed | ||
env.CXXFLAGS = "-include cstdint"; | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
diff --git a/library/grt/src/grt.h b/library/grt/src/grt.h | ||
index 47bfd63..59e664b 100644 | ||
--- a/library/grt/src/grt.h | ||
+++ b/library/grt/src/grt.h | ||
@@ -35,6 +35,7 @@ | ||
#include <stdexcept> | ||
#include <boost/function.hpp> | ||
#include <libxml/xmlmemory.h> | ||
+#include <libxml/tree.h> | ||
#include "base/threading.h" | ||
#include <string> | ||
#include <gmodule.h> | ||
diff --git a/library/grt/src/unserializer.cpp b/library/grt/src/unserializer.cpp | ||
index 6dda76d..a6f6a3c 100644 | ||
--- a/library/grt/src/unserializer.cpp | ||
+++ b/library/grt/src/unserializer.cpp | ||
@@ -401,7 +401,7 @@ ValueRef internal::Unserializer::unserialize_xmldata(const char *data, size_t si | ||
xmlDocPtr doc = xmlReadMemory(data, (int)size, NULL, NULL, XML_PARSE_NOENT); | ||
|
||
if (!doc) { | ||
- xmlErrorPtr error = xmlGetLastError(); | ||
+ const xmlError* error = xmlGetLastError(); | ||
|
||
if (error) | ||
throw std::runtime_error(base::strfmt("Could not parse XML data. Line %d, %s", error->line, error->message)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
_: _final: prev: { | ||
nix-update = prev.nix-update.overrideAttrs (old: { | ||
src = prev.fetchFromGitHub { | ||
owner = "Mic92"; | ||
repo = "nix-update"; | ||
rev = "refs/pull/202/head"; | ||
hash = "sha256-OSD8gERP4wCCw2Y3ycnIJo8J4vjM6G0pz/5mC/p+F5Q="; | ||
}; | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters