diff options
-rw-r--r-- | bindgen/0.65.1.nix | 6 | ||||
-rw-r--r-- | flake.nix | 7 |
2 files changed, 9 insertions, 4 deletions
diff --git a/bindgen/0.65.1.nix b/bindgen/0.65.1.nix index fcc5edc..fe0fb14 100644 --- a/bindgen/0.65.1.nix +++ b/bindgen/0.65.1.nix @@ -4,15 +4,15 @@ let rustfmt-nightly = rustfmt.override { asNightly = true; }; in rustPlatform.buildRustPackage rec { pname = "rust-bindgen-unwrapped"; - version = "0.65.1"; + version = "0.69.5"; src = fetchCrate { pname = "bindgen-cli"; inherit version; - sha256 = "sha256-9JJXQQSbCxTh3fIbVSrc6WAYGivwomkoB8ZIquUNr9o="; + sha256 = "sha256-5S2ErALaqdn3KWU5DKaeBhe0UQISy2ajkX6aPhgd3xc="; }; - cargoHash = "sha256-Kz6Y+4F9Yu5oKYI9LgZKLh0AkQTwerPS4A758TZrkoc="; + cargoHash = "sha256-ZCQ1EpTeiDg0sWaCy3rMYB8AYixrNqKtCU1KXwDbOWo="; buildInputs = [ clang.cc.lib ]; @@ -55,6 +55,11 @@ kmod ubootTools + # htmldocs + sphinx + python312Packages.pyyaml + graphviz + # For make menuconfig ncurses @@ -141,7 +146,7 @@ }; devShells = { - default = self.devShells."${system}".linux_6_6; + default = self.devShells."${system}".linux_6_12; linux_6_6 = mkClangShell { clangVersion = "19"; rustcVersion = "1_78_0"; }; linux_6_6_gcc = mkGccShell { gccVersion = "14"; }; |