Skip to content

Commit

Permalink
bump apsw, add more to sybols
Browse files Browse the repository at this point in the history
* bump apsw to 3.43.1.0 which has better performance and json
* add more info to elf_symbols such as value
  • Loading branch information
fzakaria committed Sep 14, 2023
1 parent e5ae524 commit 0cf983b
Show file tree
Hide file tree
Showing 5 changed files with 110 additions and 105 deletions.
7 changes: 5 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"python.formatting.provider": "black",
"editor.formatOnSave": true
"python.formatting.provider": "none",
"editor.formatOnSave": true,
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
}
}
4 changes: 2 additions & 2 deletions nix/overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ self: super: {
});

apsw = super.apsw.overridePythonAttrs (old: rec {
version = "3.43.0.0";
version = "3.43.1.0";
src = super.pkgs.fetchFromGitHub {
owner = "rogerbinns";
repo = "apsw";
rev = "refs/tags/${version}";
sha256 = "sha256-e5glVSAuHElDAarF7xvasBq8UY7n/J5bb3zSjT4fTuA=";
sha256 = "sha256-x+bSft37DgF2tXXCL6ac86g1+mj/wJeDLoCSiVSXedA=";
};
buildInputs = (old.buildInputs or [ ]) ++ [ super.pkgs.sqlite-3430 ];
});
Expand Down
Loading

0 comments on commit 0cf983b

Please sign in to comment.